Enum TailormapObjectRef.KindEnum
- java.lang.Object
-
- java.lang.Enum<TailormapObjectRef.KindEnum>
-
- nl.b3p.tailormap.api.persistence.json.TailormapObjectRef.KindEnum
-
- All Implemented Interfaces:
Serializable,Comparable<TailormapObjectRef.KindEnum>
- Enclosing class:
- TailormapObjectRef
public static enum TailormapObjectRef.KindEnum extends Enum<TailormapObjectRef.KindEnum>
Gets or Sets kind
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPFEATURE_SOURCEGEO_SERVICE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TailormapObjectRef.KindEnumfromValue(String value)StringgetValue()StringtoString()static TailormapObjectRef.KindEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static TailormapObjectRef.KindEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GEO_SERVICE
public static final TailormapObjectRef.KindEnum GEO_SERVICE
-
FEATURE_SOURCE
public static final TailormapObjectRef.KindEnum FEATURE_SOURCE
-
APP
public static final TailormapObjectRef.KindEnum APP
-
-
Method Detail
-
values
public static TailormapObjectRef.KindEnum[] 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 (TailormapObjectRef.KindEnum c : TailormapObjectRef.KindEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TailormapObjectRef.KindEnum 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<TailormapObjectRef.KindEnum>
-
fromValue
public static TailormapObjectRef.KindEnum fromValue(String value)
-
-