Enum Class StandardComponent.BindingDirection
java.lang.Object
java.lang.Enum<StandardComponent.BindingDirection>
com._1c.g5.aef2.standard.components.StandardComponent.BindingDirection
- All Implemented Interfaces:
Serializable
,Comparable<StandardComponent.BindingDirection>
,Constable
- Enclosing class:
- StandardComponent<M extends IModel,
P extends IParameterization>
public static enum StandardComponent.BindingDirection
extends Enum<StandardComponent.BindingDirection>
The enum that describes the direction of binding with the
StandardComponent
.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIndicates to bind only model to view model.Indicates to bind only view model to model. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final EnumSet<StandardComponent.BindingDirection>
Enum set that indicates to bind model in both direction. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static StandardComponent.BindingDirection[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MODEL_TO_VIEW
Indicates to bind only model to view model. -
VIEW_TO_MODEL
Indicates to bind only view model to model.
-
-
Field Details
-
BOTH
Enum set that indicates to bind model in both direction.
-
-
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
-