Package com.isode.dsapi
Enum Selection.SelectionType
- java.lang.Object
-
- java.lang.Enum<Selection.SelectionType>
-
- com.isode.dsapi.Selection.SelectionType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Selection.SelectionType>
- Enclosing class:
- Selection
public static enum Selection.SelectionType extends java.lang.Enum<Selection.SelectionType>
Convenience enums to be used when creating a Selection object.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL_OPER_ATTRIBUTES
All operational attributesALL_USER_AND_OPER_ATTRIBUTES
All user and operational attributesALL_USER_ATTRIBUTES
All user attributesNO_ATTRIBUTES
No attributes
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Selection.SelectionType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Selection.SelectionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL_USER_ATTRIBUTES
public static final Selection.SelectionType ALL_USER_ATTRIBUTES
All user attributes
-
ALL_OPER_ATTRIBUTES
public static final Selection.SelectionType ALL_OPER_ATTRIBUTES
All operational attributes
-
ALL_USER_AND_OPER_ATTRIBUTES
public static final Selection.SelectionType ALL_USER_AND_OPER_ATTRIBUTES
All user and operational attributes
-
NO_ATTRIBUTES
public static final Selection.SelectionType NO_ATTRIBUTES
No attributes
-
-
Method Detail
-
values
public static Selection.SelectionType[] 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 (Selection.SelectionType c : Selection.SelectionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Selection.SelectionType valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-