public enum AccessRightType extends Enum<AccessRightType>
Clase Java para AccessRightType.
El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
<simpleType name="AccessRightType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Everybody"/>
<enumeration value="Customer's Customer"/>
<enumeration value="Nobody"/>
<enumeration value="Customer"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CUSTOMER |
CUSTOMER_S_CUSTOMER |
EVERYBODY |
NOBODY |
| Modifier and Type | Method and Description |
|---|---|
static AccessRightType |
fromValue(String v) |
String |
value() |
static AccessRightType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessRightType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessRightType EVERYBODY
public static final AccessRightType CUSTOMER_S_CUSTOMER
public static final AccessRightType NOBODY
public static final AccessRightType CUSTOMER
public static AccessRightType[] values()
for (AccessRightType c : AccessRightType.values()) System.out.println(c);
public static AccessRightType 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 AccessRightType fromValue(String v)
Copyright © 2015. All Rights Reserved.