Enum ListUploadsRequest.WarningsFilter
- java.lang.Object
-
- java.lang.Enum<ListUploadsRequest.WarningsFilter>
-
- com.oracle.bmc.loganalytics.requests.ListUploadsRequest.WarningsFilter
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<ListUploadsRequest.WarningsFilter>
- Enclosing class:
- ListUploadsRequest
public static enum ListUploadsRequest.WarningsFilter extends Enum<ListUploadsRequest.WarningsFilter> implements BmcEnum
Use this for filtering uploads w.r.t warnings.Only one value is allowed. If no value is specified then ALL is taken as default, which means that all the uploads with and without warnings will be returned.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description All
WithoutWarnings
WithWarnings
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ListUploadsRequest.WarningsFilter
create(String key)
String
getValue()
static ListUploadsRequest.WarningsFilter
valueOf(String name)
Returns the enum constant of this type with the specified name.static ListUploadsRequest.WarningsFilter[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WithWarnings
public static final ListUploadsRequest.WarningsFilter WithWarnings
-
WithoutWarnings
public static final ListUploadsRequest.WarningsFilter WithoutWarnings
-
All
public static final ListUploadsRequest.WarningsFilter All
-
-
Method Detail
-
values
public static ListUploadsRequest.WarningsFilter[] 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 (ListUploadsRequest.WarningsFilter c : ListUploadsRequest.WarningsFilter.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ListUploadsRequest.WarningsFilter 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 ListUploadsRequest.WarningsFilter create(String key)
-
-