Package org.infinispan.client.hotrod
Enum AdminFlag
- java.lang.Object
-
- java.lang.Enum<AdminFlag>
-
- org.infinispan.client.hotrod.AdminFlag
-
- All Implemented Interfaces:
Serializable
,Comparable<AdminFlag>
@Deprecated public enum AdminFlag extends Enum<AdminFlag>
Deprecated.useCacheContainerAdmin.AdminFlag
insteadFlags which affect only administrative operations- Since:
- 9.0
- Author:
- Tristan Tarrant
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PERSISTENT
Deprecated.If the operation affects configuration, make it permanent.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description String
toString()
Deprecated.CacheContainerAdmin.AdminFlag
upgrade()
Deprecated.static AdminFlag
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static AdminFlag[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PERSISTENT
public static final AdminFlag PERSISTENT
Deprecated.If the operation affects configuration, make it permanent. If the server cannot honor this flag an error will be returned
-
-
Method Detail
-
values
public static AdminFlag[] values()
Deprecated.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 (AdminFlag c : AdminFlag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AdminFlag valueOf(String name)
Deprecated.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
-
upgrade
public CacheContainerAdmin.AdminFlag upgrade()
Deprecated.
-
-