Enum DependencyMatrixProfile.RelationOptionEnum
- java.lang.Object
-
- java.lang.Enum<DependencyMatrixProfile.RelationOptionEnum>
-
- com.nomagic.magicdraw.dependencymatrix.persistence.DependencyMatrixProfile.RelationOptionEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DependencyMatrixProfile.RelationOptionEnum>
- Enclosing class:
- DependencyMatrixProfile
public static enum DependencyMatrixProfile.RelationOptionEnum extends java.lang.Enum<DependencyMatrixProfile.RelationOptionEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL
COLUMNS_WITHOUT_RELATIONS
ROWS_WITHOUT_RELATIONS
WITH_RELATIONS
WITHOUT_RELATIONS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DependencyMatrixProfile.RelationOptionEnum
from(java.lang.Object o)
java.lang.String
getText()
static DependencyMatrixProfile.RelationOptionEnum
toEnum(EnumerationLiteral literal)
static EnumerationLiteral
toEnumerationLiteral(DependencyMatrixProfile profile, DependencyMatrixProfile.RelationOptionEnum anEnum)
static DependencyMatrixProfile.RelationOptionEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DependencyMatrixProfile.RelationOptionEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL
public static final DependencyMatrixProfile.RelationOptionEnum ALL
-
WITH_RELATIONS
public static final DependencyMatrixProfile.RelationOptionEnum WITH_RELATIONS
-
WITHOUT_RELATIONS
public static final DependencyMatrixProfile.RelationOptionEnum WITHOUT_RELATIONS
-
COLUMNS_WITHOUT_RELATIONS
public static final DependencyMatrixProfile.RelationOptionEnum COLUMNS_WITHOUT_RELATIONS
-
ROWS_WITHOUT_RELATIONS
public static final DependencyMatrixProfile.RelationOptionEnum ROWS_WITHOUT_RELATIONS
-
-
Method Detail
-
values
public static DependencyMatrixProfile.RelationOptionEnum[] 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 (DependencyMatrixProfile.RelationOptionEnum c : DependencyMatrixProfile.RelationOptionEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DependencyMatrixProfile.RelationOptionEnum 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
-
getText
public java.lang.String getText()
-
from
@CheckForNull public static DependencyMatrixProfile.RelationOptionEnum from(@CheckForNull java.lang.Object o)
-
toEnum
@CheckForNull public static DependencyMatrixProfile.RelationOptionEnum toEnum(EnumerationLiteral literal)
-
toEnumerationLiteral
@CheckForNull public static EnumerationLiteral toEnumerationLiteral(DependencyMatrixProfile profile, DependencyMatrixProfile.RelationOptionEnum anEnum)
-
-