Enum AssertionResultErrorType
- java.lang.Object
-
- java.lang.Enum<AssertionResultErrorType>
-
- io.datahubproject.openapi.generated.AssertionResultErrorType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AssertionResultErrorType>
public enum AssertionResultErrorType extends java.lang.Enum<AssertionResultErrorType>
Gets or Sets AssertionResultErrorType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INSUFFICIENT_DATAINVALID_PARAMETERSINVALID_SOURCE_TYPESOURCE_CONNECTION_ERRORSOURCE_QUERY_FAILEDUNKNOWN_ERRORUNSUPPORTED_PLATFORM
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AssertionResultErrorTypefromValue(java.lang.String text)java.lang.StringtoString()static AssertionResultErrorTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AssertionResultErrorType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SOURCE_CONNECTION_ERROR
public static final AssertionResultErrorType SOURCE_CONNECTION_ERROR
-
SOURCE_QUERY_FAILED
public static final AssertionResultErrorType SOURCE_QUERY_FAILED
-
INSUFFICIENT_DATA
public static final AssertionResultErrorType INSUFFICIENT_DATA
-
INVALID_PARAMETERS
public static final AssertionResultErrorType INVALID_PARAMETERS
-
INVALID_SOURCE_TYPE
public static final AssertionResultErrorType INVALID_SOURCE_TYPE
-
UNSUPPORTED_PLATFORM
public static final AssertionResultErrorType UNSUPPORTED_PLATFORM
-
UNKNOWN_ERROR
public static final AssertionResultErrorType UNKNOWN_ERROR
-
-
Method Detail
-
values
public static AssertionResultErrorType[] 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 (AssertionResultErrorType c : AssertionResultErrorType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AssertionResultErrorType 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
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<AssertionResultErrorType>
-
fromValue
public static AssertionResultErrorType fromValue(java.lang.String text)
-
-