public enum ResourceCreateDeletePolicy extends Enum<ResourceCreateDeletePolicy>
Java class for resourceCreateDeletePolicy.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="resourceCreateDeletePolicy">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="neither"/>
<enumeration value="create-only"/>
<enumeration value="delete-only"/>
<enumeration value="both"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BOTH |
CREATE_ONLY |
DELETE_ONLY |
NEITHER |
| Modifier and Type | Method and Description |
|---|---|
static ResourceCreateDeletePolicy |
fromValue(String v) |
String |
value() |
static ResourceCreateDeletePolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResourceCreateDeletePolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResourceCreateDeletePolicy NEITHER
public static final ResourceCreateDeletePolicy CREATE_ONLY
public static final ResourceCreateDeletePolicy DELETE_ONLY
public static final ResourceCreateDeletePolicy BOTH
public static ResourceCreateDeletePolicy[] values()
for (ResourceCreateDeletePolicy c : ResourceCreateDeletePolicy.values()) System.out.println(c);
public static ResourceCreateDeletePolicy 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 ResourceCreateDeletePolicy fromValue(String v)
Copyright © 2008-2013 Red Hat, Inc.. All Rights Reserved.