Enum UberfireSimplePager.TextLocation
- java.lang.Object
-
- java.lang.Enum<UberfireSimplePager.TextLocation>
-
- org.uberfire.ext.widgets.table.client.UberfireSimplePager.TextLocation
-
- All Implemented Interfaces:
Serializable,Comparable<UberfireSimplePager.TextLocation>
- Enclosing class:
- UberfireSimplePager
public static enum UberfireSimplePager.TextLocation extends Enum<UberfireSimplePager.TextLocation>
The location of the text relative to the paging buttons.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UberfireSimplePager.TextLocationvalueOf(String name)Returns the enum constant of this type with the specified name.static UberfireSimplePager.TextLocation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CENTER
public static final UberfireSimplePager.TextLocation CENTER
-
LEFT
public static final UberfireSimplePager.TextLocation LEFT
-
RIGHT
public static final UberfireSimplePager.TextLocation RIGHT
-
-
Method Detail
-
values
public static UberfireSimplePager.TextLocation[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (UberfireSimplePager.TextLocation c : UberfireSimplePager.TextLocation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UberfireSimplePager.TextLocation valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-