Package gov.nasa.pds.tools.constants
Enum Constants.ProblemType
- java.lang.Object
-
- java.lang.Enum<Constants.ProblemType>
-
- gov.nasa.pds.tools.constants.Constants.ProblemType
-
- All Implemented Interfaces:
Serializable
,Comparable<Constants.ProblemType>
- Enclosing class:
- Constants
public static enum Constants.ProblemType extends Enum<Constants.ProblemType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Constants.Severity
getSeverity()
static Constants.ProblemType
valueOf(String name)
Returns the enum constant of this type with the specified name.static Constants.ProblemType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INVALID_LABEL
public static final Constants.ProblemType INVALID_LABEL
-
INVALID_LABEL_WARNING
public static final Constants.ProblemType INVALID_LABEL_WARNING
-
PARSE_ERROR
public static final Constants.ProblemType PARSE_ERROR
-
UNKNOWN_KEY
public static final Constants.ProblemType UNKNOWN_KEY
-
UNKNOWN_VALUE_TYPE
public static final Constants.ProblemType UNKNOWN_VALUE_TYPE
-
UNKNOWN_VALUE
public static final Constants.ProblemType UNKNOWN_VALUE
-
TYPE_MISMATCH
public static final Constants.ProblemType TYPE_MISMATCH
-
INVALID_DEFINITION
public static final Constants.ProblemType INVALID_DEFINITION
-
NEW_VALUE
public static final Constants.ProblemType NEW_VALUE
-
INVALID_VALUE
public static final Constants.ProblemType INVALID_VALUE
-
MANIPULATED_VALUE
public static final Constants.ProblemType MANIPULATED_VALUE
-
INVALID_TYPE
public static final Constants.ProblemType INVALID_TYPE
-
INVALID_MEMBER
public static final Constants.ProblemType INVALID_MEMBER
-
MISSING_MEMBER
public static final Constants.ProblemType MISSING_MEMBER
-
MISSING_PROPERTY
public static final Constants.ProblemType MISSING_PROPERTY
-
POTENTIAL_POINTER_PROBLEM
public static final Constants.ProblemType POTENTIAL_POINTER_PROBLEM
-
EXCESSIVE_LINE_LENGTH
public static final Constants.ProblemType EXCESSIVE_LINE_LENGTH
-
WRONG_LINE_LENGTH
public static final Constants.ProblemType WRONG_LINE_LENGTH
-
ILLEGAL_LINE_ENDING
public static final Constants.ProblemType ILLEGAL_LINE_ENDING
-
MISSING_ID
public static final Constants.ProblemType MISSING_ID
-
EXCESSIVE_NAMESPACE_LENGTH
public static final Constants.ProblemType EXCESSIVE_NAMESPACE_LENGTH
-
EXCESSIVE_IDENTIFIER_LENGTH
public static final Constants.ProblemType EXCESSIVE_IDENTIFIER_LENGTH
-
MISSING_VALUE
public static final Constants.ProblemType MISSING_VALUE
-
SHORT_VALUE
public static final Constants.ProblemType SHORT_VALUE
-
BAD_VALUE
public static final Constants.ProblemType BAD_VALUE
-
EXCESSIVE_VALUE_LENGTH
public static final Constants.ProblemType EXCESSIVE_VALUE_LENGTH
-
OOR
public static final Constants.ProblemType OOR
-
INVALID_DESCRIPTION
public static final Constants.ProblemType INVALID_DESCRIPTION
-
INVALID_DATE
public static final Constants.ProblemType INVALID_DATE
-
CIRCULAR_POINTER_REF
public static final Constants.ProblemType CIRCULAR_POINTER_REF
-
BAD_CATALOG_NAME
public static final Constants.ProblemType BAD_CATALOG_NAME
-
DUPLICATE_IDENTIFIER
public static final Constants.ProblemType DUPLICATE_IDENTIFIER
-
PLACEHOLDER_VALUE
public static final Constants.ProblemType PLACEHOLDER_VALUE
-
ATTACHED_START_BYTE_MISMATCH
public static final Constants.ProblemType ATTACHED_START_BYTE_MISMATCH
-
START_BYTE_POSSIBLE_MISMATCH
public static final Constants.ProblemType START_BYTE_POSSIBLE_MISMATCH
-
INVALID_LABEL_FRAGMENT
public static final Constants.ProblemType INVALID_LABEL_FRAGMENT
-
FRAGMENT_HAS_VERSION
public static final Constants.ProblemType FRAGMENT_HAS_VERSION
-
FRAGMENT_HAS_SFDU
public static final Constants.ProblemType FRAGMENT_HAS_SFDU
-
COLUMN_NUMBER_MISMATCH
public static final Constants.ProblemType COLUMN_NUMBER_MISMATCH
-
COLUMN_LENGTH_MISMATCH
public static final Constants.ProblemType COLUMN_LENGTH_MISMATCH
-
INVALID_VALUE_FOR_COLUMN
public static final Constants.ProblemType INVALID_VALUE_FOR_COLUMN
-
COLUMN_DEF_OOR
public static final Constants.ProblemType COLUMN_DEF_OOR
-
MISSING_RESOURCE
public static final Constants.ProblemType MISSING_RESOURCE
-
MISSING_INDEX_RESOURCE
public static final Constants.ProblemType MISSING_INDEX_RESOURCE
-
MISSING_REQUIRED_RESOURCE
public static final Constants.ProblemType MISSING_REQUIRED_RESOURCE
-
UNKNOWN_FILE
public static final Constants.ProblemType UNKNOWN_FILE
-
LABEL_NOT_INDEXED
public static final Constants.ProblemType LABEL_NOT_INDEXED
-
LABEL_NOT_TO_BE_INDEXED
public static final Constants.ProblemType LABEL_NOT_TO_BE_INDEXED
-
UNKNOWN_FOLDER
public static final Constants.ProblemType UNKNOWN_FOLDER
-
EMPTY_FILE
public static final Constants.ProblemType EMPTY_FILE
-
EMPTY_FOLDER
public static final Constants.ProblemType EMPTY_FOLDER
-
MISMATCHED_CASE
public static final Constants.ProblemType MISMATCHED_CASE
-
BAD_FORMAT
public static final Constants.ProblemType BAD_FORMAT
-
EXECUTE_FAIL
public static final Constants.ProblemType EXECUTE_FAIL
-
SUCCEED
public static final Constants.ProblemType SUCCEED
-
-
Method Detail
-
values
public static Constants.ProblemType[] 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 (Constants.ProblemType c : Constants.ProblemType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Constants.ProblemType 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
-
getSeverity
public Constants.Severity getSeverity()
-
-