Redis@Deprecated public enum BitFieldOverflowOptions extends Enum<BitFieldOverflowOptions>
| Enum Constant and Description | 
|---|
FAIL
Deprecated.  
  | 
SAT
Deprecated.  
  | 
WRAP
Deprecated.  
  | 
| Modifier and Type | Method and Description | 
|---|---|
static BitFieldOverflowOptions | 
valueOf(String name)
Deprecated.  
Returns the enum constant of this type with the specified name. 
 | 
static BitFieldOverflowOptions[] | 
values()
Deprecated.  
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final BitFieldOverflowOptions WRAP
public static final BitFieldOverflowOptions SAT
public static final BitFieldOverflowOptions FAIL
public static BitFieldOverflowOptions[] values()
for (BitFieldOverflowOptions c : BitFieldOverflowOptions.values()) System.out.println(c);
public static BitFieldOverflowOptions valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020 Eclipse. All rights reserved.