@Experimental public enum RegionAttributesScope extends Enum<RegionAttributesScope>
Java class for region-attributesScope.
The following schema fragment specifies the expected content contained within this class.
 <simpleType name="region-attributesScope">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="distributed-ack"/>
     <enumeration value="distributed-no-ack"/>
     <enumeration value="global"/>
     <enumeration value="local"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
DISTRIBUTED_ACK  | 
DISTRIBUTED_NO_ACK  | 
GLOBAL  | 
LOCAL  | 
| Modifier and Type | Method and Description | 
|---|---|
static RegionAttributesScope | 
fromValue(String v)  | 
String | 
value()  | 
static RegionAttributesScope | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static RegionAttributesScope[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final RegionAttributesScope DISTRIBUTED_ACK
public static final RegionAttributesScope DISTRIBUTED_NO_ACK
public static final RegionAttributesScope GLOBAL
public static final RegionAttributesScope LOCAL
public static RegionAttributesScope[] values()
for (RegionAttributesScope c : RegionAttributesScope.values()) System.out.println(c);
public static RegionAttributesScope 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 nullpublic String value()
public static RegionAttributesScope fromValue(String v)