public enum ModelName extends Enum<ModelName>
| Enum Constant and Description |
|---|
CENTER_SLIDER |
CENTERED |
CORNERS |
CUSTOM |
EDGE_OPPOSITE |
EIGHT_POS |
INTERNAL |
SANDWICH |
SIDE_SLIDER |
SIX_POS |
THREE_CENTER |
TWO_POS |
| Modifier and Type | Method and Description |
|---|---|
static ModelName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModelName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModelName CUSTOM
public static final ModelName CORNERS
public static final ModelName INTERNAL
public static final ModelName SANDWICH
public static final ModelName EIGHT_POS
public static final ModelName EDGE_OPPOSITE
public static final ModelName CENTERED
public static final ModelName TWO_POS
public static final ModelName THREE_CENTER
public static final ModelName SIX_POS
public static final ModelName CENTER_SLIDER
public static final ModelName SIDE_SLIDER
public final String value
public static ModelName[] values()
for (ModelName c : ModelName.values()) System.out.println(c);
public static ModelName 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 © 2016. All rights reserved.