public static enum RoundSettings.RoundState extends Enum<RoundSettings.RoundState>
| Enum Constant and Description |
|---|
OFF |
ROUND |
ROUND_DOWN_TO_GRID |
ROUND_TO_DOUBLE_GRID |
ROUND_TO_GRID |
ROUND_TO_HALF_GRID |
ROUND_UP_TO_GRID |
SUPER_ROUND |
SUPER_ROUND_45_DEG |
| Modifier and Type | Method and Description |
|---|---|
static RoundSettings.RoundState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RoundSettings.RoundState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RoundSettings.RoundState OFF
public static final RoundSettings.RoundState ROUND
public static final RoundSettings.RoundState ROUND_TO_GRID
public static final RoundSettings.RoundState ROUND_DOWN_TO_GRID
public static final RoundSettings.RoundState ROUND_UP_TO_GRID
public static final RoundSettings.RoundState ROUND_TO_DOUBLE_GRID
public static final RoundSettings.RoundState ROUND_TO_HALF_GRID
public static final RoundSettings.RoundState SUPER_ROUND
public static final RoundSettings.RoundState SUPER_ROUND_45_DEG
public static RoundSettings.RoundState[] values()
for (RoundSettings.RoundState c : RoundSettings.RoundState.values()) System.out.println(c);
public static RoundSettings.RoundState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018. All rights reserved.