Package com.luciad.format.xml.bind.xlink
Enum Class ILcdXLinkExpression.Actuate
java.lang.Object
java.lang.Enum<ILcdXLinkExpression.Actuate>
com.luciad.format.xml.bind.xlink.ILcdXLinkExpression.Actuate
- All Implemented Interfaces:
Serializable
,Comparable<ILcdXLinkExpression.Actuate>
,Constable
- Enclosing interface:
ILcdXLinkExpression
Enumeration that indicates when the expression should be resolved.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionIndicates that this expression should be resolved immediately after decoding.Indicates that this expression should be resolved only when the application explicitly invokes resolve.Indicates that this expression should be resolved when its value is requested for the first time. -
Method Summary
Modifier and TypeMethodDescriptionstatic ILcdXLinkExpression.Actuate
Returns the enum constant of this class with the specified name.static ILcdXLinkExpression.Actuate[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
AfterDecoding
Indicates that this expression should be resolved immediately after decoding. -
OnRequest
Indicates that this expression should be resolved when its value is requested for the first time. -
Manual
Indicates that this expression should be resolved only when the application explicitly invokes resolve.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-