public enum Orientation extends Enum<Orientation>
| Modifier and Type | Method and Description |
|---|---|
boolean |
isLT()
Indicates whether the Locale correspond to an LT orientation.
|
boolean |
isRT()
Indicates whether the Locale correspond to an RT orientation.
|
boolean |
isTL()
Indicates whether the Locale correspond to an TL orientation.
|
boolean |
isTR()
Indicates whether the Locale correspond to an TR orientation.
|
static Orientation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Orientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Orientation LT
public static final Orientation RT
public static final Orientation TL
public static final Orientation TR
public static Orientation[] values()
for (Orientation c : Orientation.values()) System.out.println(c);
public static Orientation 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 boolean isLT()
public boolean isRT()
public boolean isTL()
public boolean isTR()
Copyright © 2017 JBoss by Red Hat. All Rights Reserved.