Enum ExternalValidationStatusSeverity
- java.lang.Object
-
- java.lang.Enum<ExternalValidationStatusSeverity>
-
- com._1c.g5.aef2.standard.viewModels.ExternalValidationStatusSeverity
-
- All Implemented Interfaces:
Serializable
,Comparable<ExternalValidationStatusSeverity>
,org.eclipse.emf.common.util.Enumerator
public enum ExternalValidationStatusSeverity extends Enum<ExternalValidationStatusSeverity> implements org.eclipse.emf.common.util.Enumerator
A representation of the literals of the enumeration 'External Validation Status Severity', and utility methods for working with them. The status severity of the external validation
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BLOCKER
The 'BLOCKER' literal object.CRITICAL
The 'CRITICAL' literal object.ERROR
The 'ERROR' literal object.MAJOR
The 'MAJOR' literal object.MINOR
The 'MINOR' literal object.NONE
The 'NONE' literal object.TRIVIAL
The 'TRIVIAL' literal object.
-
Field Summary
Fields Modifier and Type Field Description static int
BLOCKER_VALUE
The 'BLOCKER' literal value.static int
CRITICAL_VALUE
The 'CRITICAL' literal value.static int
ERROR_VALUE
The 'ERROR' literal value.static int
MAJOR_VALUE
The 'MAJOR' literal value.static int
MINOR_VALUE
The 'MINOR' literal value.static int
NONE_VALUE
The 'NONE' literal value.static int
TRIVIAL_VALUE
The 'TRIVIAL' literal value.static List<ExternalValidationStatusSeverity>
VALUES
A public read-only list of all the 'External Validation Status Severity' enumerators.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ExternalValidationStatusSeverity
get(int value)
Returns the 'External Validation Status Severity' literal with the specified integer value.static ExternalValidationStatusSeverity
get(String literal)
Returns the 'External Validation Status Severity' literal with the specified literal value.static ExternalValidationStatusSeverity
getByName(String name)
Returns the 'External Validation Status Severity' literal with the specified name.String
getLiteral()
String
getName()
int
getValue()
String
toString()
Returns the literal value of the enumerator, which is its string representation.static ExternalValidationStatusSeverity
valueOf(String name)
Returns the enum constant of this type with the specified name.static ExternalValidationStatusSeverity[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final ExternalValidationStatusSeverity NONE
The 'NONE' literal object.- See Also:
NONE_VALUE
-
TRIVIAL
public static final ExternalValidationStatusSeverity TRIVIAL
The 'TRIVIAL' literal object.- See Also:
TRIVIAL_VALUE
-
MINOR
public static final ExternalValidationStatusSeverity MINOR
The 'MINOR' literal object.- See Also:
MINOR_VALUE
-
MAJOR
public static final ExternalValidationStatusSeverity MAJOR
The 'MAJOR' literal object.- See Also:
MAJOR_VALUE
-
BLOCKER
public static final ExternalValidationStatusSeverity BLOCKER
The 'BLOCKER' literal object.- See Also:
BLOCKER_VALUE
-
CRITICAL
public static final ExternalValidationStatusSeverity CRITICAL
The 'CRITICAL' literal object.- See Also:
CRITICAL_VALUE
-
ERROR
public static final ExternalValidationStatusSeverity ERROR
The 'ERROR' literal object.- See Also:
ERROR_VALUE
-
-
Field Detail
-
NONE_VALUE
public static final int NONE_VALUE
The 'NONE' literal value.- See Also:
NONE
, Constant Field Values
-
TRIVIAL_VALUE
public static final int TRIVIAL_VALUE
The 'TRIVIAL' literal value.- See Also:
TRIVIAL
, Constant Field Values
-
MINOR_VALUE
public static final int MINOR_VALUE
The 'MINOR' literal value.- See Also:
MINOR
, Constant Field Values
-
MAJOR_VALUE
public static final int MAJOR_VALUE
The 'MAJOR' literal value.- See Also:
MAJOR
, Constant Field Values
-
BLOCKER_VALUE
public static final int BLOCKER_VALUE
The 'BLOCKER' literal value.- See Also:
BLOCKER
, Constant Field Values
-
CRITICAL_VALUE
public static final int CRITICAL_VALUE
The 'CRITICAL' literal value.- See Also:
CRITICAL
, Constant Field Values
-
ERROR_VALUE
public static final int ERROR_VALUE
The 'ERROR' literal value.- See Also:
ERROR
, Constant Field Values
-
VALUES
public static final List<ExternalValidationStatusSeverity> VALUES
A public read-only list of all the 'External Validation Status Severity' enumerators.
-
-
Method Detail
-
values
public static ExternalValidationStatusSeverity[] 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 (ExternalValidationStatusSeverity c : ExternalValidationStatusSeverity.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExternalValidationStatusSeverity valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
get
public static ExternalValidationStatusSeverity get(String literal)
Returns the 'External Validation Status Severity' literal with the specified literal value.- Parameters:
literal
- the literal.- Returns:
- the matching enumerator or
null
.
-
getByName
public static ExternalValidationStatusSeverity getByName(String name)
Returns the 'External Validation Status Severity' literal with the specified name.- Parameters:
name
- the name.- Returns:
- the matching enumerator or
null
.
-
get
public static ExternalValidationStatusSeverity get(int value)
Returns the 'External Validation Status Severity' literal with the specified integer value.- Parameters:
value
- the integer value.- Returns:
- the matching enumerator or
null
.
-
getValue
public int getValue()
- Specified by:
getValue
in interfaceorg.eclipse.emf.common.util.Enumerator
-
getName
public String getName()
- Specified by:
getName
in interfaceorg.eclipse.emf.common.util.Enumerator
-
getLiteral
public String getLiteral()
- Specified by:
getLiteral
in interfaceorg.eclipse.emf.common.util.Enumerator
-
toString
public String toString()
Returns the literal value of the enumerator, which is its string representation.- Overrides:
toString
in classEnum<ExternalValidationStatusSeverity>
-
-