Enum ComplexTypeBindingMode
- All Implemented Interfaces:
Serializable
,Comparable<ComplexTypeBindingMode>
,java.lang.constant.Constable
Three-state flag for a complex type.
- Author:
- Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIf a complex type has falled back to the general list content and it is not NOMOREEXTENSION.If a complex type has fallen to the dummy property in order to override previously inherited content.If a complex type has falled back to the rest content and it is not NOMOREEXTENSION.Neither FALLBACK nor NOMOREEXTENSION. -
Method Summary
Modifier and TypeMethodDescriptionstatic ComplexTypeBindingMode
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.
-
Enum Constant Details
-
NORMAL
Neither FALLBACK nor NOMOREEXTENSION. -
FALLBACK_CONTENT
If a complex type has falled back to the general list content and it is not NOMOREEXTENSION. -
FALLBACK_REST
If a complex type has falled back to the rest 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.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-