Package io.thestencil.client.api
Enum StencilClient.EntityType
- java.lang.Object
-
- java.lang.Enum<StencilClient.EntityType>
-
- io.thestencil.client.api.StencilClient.EntityType
-
- All Implemented Interfaces:
Serializable,Comparable<StencilClient.EntityType>
- Enclosing interface:
- StencilClient
public static enum StencilClient.EntityType extends Enum<StencilClient.EntityType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StencilClient.EntityTypevalueOf(String name)Returns the enum constant of this type with the specified name.static StencilClient.EntityType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOCALE
public static final StencilClient.EntityType LOCALE
-
LINK
public static final StencilClient.EntityType LINK
-
ARTICLE
public static final StencilClient.EntityType ARTICLE
-
WORKFLOW
public static final StencilClient.EntityType WORKFLOW
-
RELEASE
public static final StencilClient.EntityType RELEASE
-
PAGE
public static final StencilClient.EntityType PAGE
-
-
Method Detail
-
values
public static StencilClient.EntityType[] 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 (StencilClient.EntityType c : StencilClient.EntityType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StencilClient.EntityType 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
-
-