Package com.oracle.bmc.datasafe.model
Enum SelectionDetails.SelectionMode
- java.lang.Object
-
- java.lang.Enum<SelectionDetails.SelectionMode>
-
- com.oracle.bmc.datasafe.model.SelectionDetails.SelectionMode
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<SelectionDetails.SelectionMode>
- Enclosing class:
- SelectionDetails
public static enum SelectionDetails.SelectionMode extends Enum<SelectionDetails.SelectionMode> implements BmcEnum
The mode of selection of items, whether it is a list of ocids or a scimQuery.Allowed values:
- LIST - SCIM_QUERY
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SelectionDetails.SelectionMode
create(String key)
String
getValue()
static SelectionDetails.SelectionMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static SelectionDetails.SelectionMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
List
public static final SelectionDetails.SelectionMode List
-
ScimQuery
public static final SelectionDetails.SelectionMode ScimQuery
-
-
Method Detail
-
values
public static SelectionDetails.SelectionMode[] 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 (SelectionDetails.SelectionMode c : SelectionDetails.SelectionMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SelectionDetails.SelectionMode 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
-
create
public static SelectionDetails.SelectionMode create(String key)
-
-