public enum ParentParentType extends Enum<ParentParentType>
Java class for Parent.ParentType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="Parent.ParentType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="PARENT_PARENT"/>
<enumeration value="PARENT_NOT_A_PARENT"/>
<enumeration value="PARENT_UNDETERMINED"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
PARENT_NOT_A_PARENT |
PARENT_PARENT |
PARENT_UNDETERMINED |
UNKNOWN
Used for return value only.
|
| Modifier and Type | Method and Description |
|---|---|
static ParentParentType |
fromValue(String v) |
String |
value() |
static ParentParentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParentParentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParentParentType PARENT_PARENT
public static final ParentParentType PARENT_NOT_A_PARENT
public static final ParentParentType PARENT_UNDETERMINED
public static final ParentParentType UNKNOWN
public static ParentParentType[] values()
for (ParentParentType c : ParentParentType.values()) System.out.println(c);
public static ParentParentType 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 ParentParentType fromValue(String v)
Copyright © 2023. All rights reserved.