public static enum RawTypeSet.Mode extends Enum<RawTypeSet.Mode>
RawTypeSet
.Enum Constant and Description |
---|
CAN_BE_TYPEREF
This
RawTypeSet can be either an reference property or
an element property, and XJC recommends reference property. |
MUST_BE_REFERENCE
This
RawTypeSet can be only bound to a reference property. |
SHOULD_BE_TYPEREF
This
RawTypeSet can be either an reference property or
an element property, and XJC recommends element property. |
Modifier and Type | Method and Description |
---|---|
static RawTypeSet.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RawTypeSet.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RawTypeSet.Mode SHOULD_BE_TYPEREF
RawTypeSet
can be either an reference property or
an element property, and XJC recommends element property.public static final RawTypeSet.Mode CAN_BE_TYPEREF
RawTypeSet
can be either an reference property or
an element property, and XJC recommends reference property.public static final RawTypeSet.Mode MUST_BE_REFERENCE
RawTypeSet
can be only bound to a reference property.public static RawTypeSet.Mode[] values()
for (RawTypeSet.Mode c : RawTypeSet.Mode.values()) System.out.println(c);
public static RawTypeSet.Mode 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 nullCopyright © 2017 JBoss by Red Hat. All rights reserved.