public enum CesiumStripeOrientation extends Enum<CesiumStripeOrientation> implements Enumeration
| Enum Constant and Description | 
|---|
| HORIZONTALThe stripes are oriented horizontally along the X axis. | 
| VERTICALThe stripes are oriented vertically along the Y axis. | 
| Modifier and Type | Method and Description | 
|---|---|
| static CesiumStripeOrientation | getDefault()Get the enum constant that is considered to be the default. | 
| static CesiumStripeOrientation | getFromValue(int value)Get the enum constant that is associated with the given numeric value. | 
| int | getValue()Get the numeric value associated with this enum constant. | 
| static CesiumStripeOrientation | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static CesiumStripeOrientation[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final CesiumStripeOrientation HORIZONTAL
public static final CesiumStripeOrientation VERTICAL
public static CesiumStripeOrientation[] values()
for (CesiumStripeOrientation c : CesiumStripeOrientation.values()) System.out.println(c);
public static CesiumStripeOrientation 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 getValue()
getValue in interface Enumeration@Nonnull public static CesiumStripeOrientation getFromValue(int value)
value - a numeric value.@Nonnull public static CesiumStripeOrientation getDefault()