Enum TilesApp.TYPE
- java.lang.Object
-
- java.lang.Enum<TilesApp.TYPE>
-
- org.uberfire.ext.apps.client.home.components.TilesApp.TYPE
-
- All Implemented Interfaces:
Serializable,Comparable<TilesApp.TYPE>
- Enclosing class:
- TilesApp
public static enum TilesApp.TYPE extends Enum<TilesApp.TYPE>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TilesApp.TYPEvalueOf(String name)Returns the enum constant of this type with the specified name.static TilesApp.TYPE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DIR
public static final TilesApp.TYPE DIR
-
ADD
public static final TilesApp.TYPE ADD
-
COMPONENT
public static final TilesApp.TYPE COMPONENT
-
-
Method Detail
-
values
public static TilesApp.TYPE[] 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 (TilesApp.TYPE c : TilesApp.TYPE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TilesApp.TYPE 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
-
-