Package ai.extend.types
Enum DataRetentionMode.Value
- java.lang.Object
-
- java.lang.Enum<DataRetentionMode.Value>
-
- ai.extend.types.DataRetentionMode.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DataRetentionMode.Value>
- Enclosing class:
- DataRetentionMode
public static enum DataRetentionMode.Value extends java.lang.Enum<DataRetentionMode.Value>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description UNKNOWNWORKSPACE_DEFAULTZERO
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DataRetentionMode.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DataRetentionMode.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WORKSPACE_DEFAULT
public static final DataRetentionMode.Value WORKSPACE_DEFAULT
-
ZERO
public static final DataRetentionMode.Value ZERO
-
UNKNOWN
public static final DataRetentionMode.Value UNKNOWN
-
-
Method Detail
-
values
public static DataRetentionMode.Value[] 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 (DataRetentionMode.Value c : DataRetentionMode.Value.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataRetentionMode.Value 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
-
-