Enum ListLookupsRequest.Type
- java.lang.Object
-
- java.lang.Enum<ListLookupsRequest.Type>
-
- com.oracle.bmc.loganalytics.requests.ListLookupsRequest.Type
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<ListLookupsRequest.Type>
- Enclosing class:
- ListLookupsRequest
public static enum ListLookupsRequest.Type extends Enum<ListLookupsRequest.Type> implements BmcEnum
The lookup type.Valid values are Lookup, Dictionary or Module.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Dictionary
Lookup
Module
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ListLookupsRequest.Type
create(String key)
String
getValue()
static ListLookupsRequest.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static ListLookupsRequest.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Lookup
public static final ListLookupsRequest.Type Lookup
-
Dictionary
public static final ListLookupsRequest.Type Dictionary
-
Module
public static final ListLookupsRequest.Type Module
-
-
Method Detail
-
values
public static ListLookupsRequest.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 (ListLookupsRequest.Type c : ListLookupsRequest.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 ListLookupsRequest.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
-
create
public static ListLookupsRequest.Type create(String key)
-
-