public enum TickmarkPlacement extends Enum<TickmarkPlacement> implements LowercaseEnum
| Modifier and Type | Method and Description |
|---|---|
static TickmarkPlacement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TickmarkPlacement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TickmarkPlacement ON
public static final TickmarkPlacement BETWEEN
public static TickmarkPlacement[] values()
for (TickmarkPlacement c : TickmarkPlacement.values()) System.out.println(c);
public static TickmarkPlacement 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 © 2013. All Rights Reserved.