public enum ValueLocation extends Enum<ValueLocation>
ValueLocation class.
| Modifier and Type | Method and Description |
|---|---|
static ValueLocation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValueLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueLocation NONE
public static final ValueLocation LEFT
public static final ValueLocation RIGHT
public static final ValueLocation BULB
public static ValueLocation[] values()
for (ValueLocation c : ValueLocation.values()) System.out.println(c);
public static ValueLocation 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 © 2010–2021. All rights reserved.