public enum EnumAxesMode extends Enum<EnumAxesMode>
Modifier and Type | Field and Description |
---|---|
private int |
code
Code of axes mode.
|
Modifier and Type | Method and Description |
---|---|
static EnumAxesMode |
getAxesMode(int code) |
int |
getCode() |
static EnumAxesMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumAxesMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumAxesMode BOUNDBOX
public static final EnumAxesMode MOLECULAR
public static final EnumAxesMode UNITCELL
public static EnumAxesMode[] values()
for (EnumAxesMode c : EnumAxesMode.values()) System.out.println(c);
public static EnumAxesMode 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 nullpublic int getCode()
public static EnumAxesMode getAxesMode(int code)
code
- Code of axes mode.