public enum ComplexTypeBindingMode extends java.lang.Enum<ComplexTypeBindingMode>
| Enum Constant | Description |
|---|---|
FALLBACK_CONTENT |
If a complex type has falled back to the general list content and
it is not NOMOREEXTENSION.
|
FALLBACK_EXTENSION |
If a complex type has fallen to the dummy property in order
to override previously inherited content.
|
FALLBACK_REST |
If a complex type has falled back to the rest content and
it is not NOMOREEXTENSION.
|
NORMAL |
Neither FALLBACK nor NOMOREEXTENSION.
|
| Modifier and Type | Method | Description |
|---|---|---|
static ComplexTypeBindingMode |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ComplexTypeBindingMode[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComplexTypeBindingMode NORMAL
public static final ComplexTypeBindingMode FALLBACK_CONTENT
public static final ComplexTypeBindingMode FALLBACK_REST
public static final ComplexTypeBindingMode FALLBACK_EXTENSION
public static ComplexTypeBindingMode[] values()
for (ComplexTypeBindingMode c : ComplexTypeBindingMode.values()) System.out.println(c);
public static ComplexTypeBindingMode 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 nullCopyright © 2018 Oracle Corporation. All rights reserved.