public enum AccessRightType extends java.lang.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(java.lang.String v) |
java.lang.String |
value() |
static AccessRightType |
valueOf(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String value()
public static AccessRightType fromValue(java.lang.String v)
Copyright © 2014. All Rights Reserved.