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