Enum AttributeValuesPage.AttributeAssignmentState
- java.lang.Object
-
- java.lang.Enum<AttributeValuesPage.AttributeAssignmentState>
-
- net.ssehub.easy.producer.ui.productline_editor.configuration.AttributeValuesPage.AttributeAssignmentState
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AttributeValuesPage.AttributeAssignmentState>,IAssignmentState
- Enclosing class:
- AttributeValuesPage
private static enum AttributeValuesPage.AttributeAssignmentState extends java.lang.Enum<AttributeValuesPage.AttributeAssignmentState> implements IAssignmentState
Defines a specific assignment state for user-provided attribute values.- Author:
- Holger Eichelberger
-
-
Enum Constant Summary
Enum Constants Enum Constant Description USER_ATTRIBUTEUser-specified attribute values.
-
Constructor Summary
Constructors Modifier Constructor Description privateAttributeAssignmentState()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AttributeValuesPage.AttributeAssignmentStatevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AttributeValuesPage.AttributeAssignmentState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
USER_ATTRIBUTE
public static final AttributeValuesPage.AttributeAssignmentState USER_ATTRIBUTE
User-specified attribute values.
-
-
Method Detail
-
values
public static AttributeValuesPage.AttributeAssignmentState[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AttributeValuesPage.AttributeAssignmentState c : AttributeValuesPage.AttributeAssignmentState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AttributeValuesPage.AttributeAssignmentState valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-