Enum AppFormerComponentsRegistry.Entry.Type
- java.lang.Object
-
- java.lang.Enum<AppFormerComponentsRegistry.Entry.Type>
-
- org.uberfire.jsbridge.client.loading.AppFormerComponentsRegistry.Entry.Type
-
- All Implemented Interfaces:
Serializable,Comparable<AppFormerComponentsRegistry.Entry.Type>
- Enclosing class:
- AppFormerComponentsRegistry.Entry
public static enum AppFormerComponentsRegistry.Entry.Type extends Enum<AppFormerComponentsRegistry.Entry.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EDITORPERSPECTIVESCREEN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AppFormerComponentsRegistry.Entry.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static AppFormerComponentsRegistry.Entry.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PERSPECTIVE
public static final AppFormerComponentsRegistry.Entry.Type PERSPECTIVE
-
SCREEN
public static final AppFormerComponentsRegistry.Entry.Type SCREEN
-
EDITOR
public static final AppFormerComponentsRegistry.Entry.Type EDITOR
-
-
Method Detail
-
values
public static AppFormerComponentsRegistry.Entry.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 (AppFormerComponentsRegistry.Entry.Type c : AppFormerComponentsRegistry.Entry.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 AppFormerComponentsRegistry.Entry.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
-
-