Enum Class Origin
- All Implemented Interfaces:
Serializable
,Comparable<Origin>
,Constable
Enum representing the origin of a property value.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionWrites that come from a binding/transform generating a new value.Writes that come from a binding writing back to its target because of a source changeWrites that come from the browser UI.Writes that are originated by server-side component delegate implementationsIndicates a value that originated from the saved version of the view or session props.Writes that originate from a script callWrites that are originated automatically by the session itself. -
Field Summary
Fields -
Method Summary
-
Enum Constant Details
-
Browser
Writes that come from the browser UI. -
Binding
Writes that come from a binding/transform generating a new value. -
BindingWriteback
Writes that come from a binding writing back to its target because of a source change -
Script
Writes that originate from a script call -
Delegate
Writes that are originated by server-side component delegate implementations -
Session
Writes that are originated automatically by the session itself. -
Project
Indicates a value that originated from the saved version of the view or session props.
-
-
Field Details
-
ANY
A set of all Origins
-
-
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
-
allBut
Returns a set of all Origins except the given one
-