Enum Type
- java.lang.Object
-
- java.lang.Enum<Type>
-
- de.captaingoldfish.scim.sdk.common.constants.enums.Type
-
- All Implemented Interfaces:
Serializable,Comparable<Type>
public enum Type extends Enum<Type>
author Pascal Knueppel
created at: 28.09.2019 - 18:00
The attribute's data type. Valid values are "string", "boolean", "decimal", "integer", "dateTime", "reference", and "complex". When an attribute is of type "complex", there SHOULD be a corresponding schema attribute "subAttributes" defined, listing the sub-attributes of the attribute.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TypegetByValue(String value)static TypevalueOf(String name)Returns the enum constant of this type with the specified name.static Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRING
public static final Type STRING
-
COMPLEX
public static final Type COMPLEX
-
BOOLEAN
public static final Type BOOLEAN
-
DECIMAL
public static final Type DECIMAL
-
INTEGER
public static final Type INTEGER
-
DATE_TIME
public static final Type DATE_TIME
-
REFERENCE
public static final Type REFERENCE
-
-
Method Detail
-
values
public static 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 (Type c : 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 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
-
-