Package boofcv.io.serialize
Enum Class SerializeFieldsYamlBase.ErrorType
java.lang.Object
java.lang.Enum<SerializeFieldsYamlBase.ErrorType>
boofcv.io.serialize.SerializeFieldsYamlBase.ErrorType
- All Implemented Interfaces:
Serializable
,Comparable<SerializeFieldsYamlBase.ErrorType>
,java.lang.constant.Constable
- Enclosing class:
- SerializeFieldsYamlBase
public static enum SerializeFieldsYamlBase.ErrorType
extends Enum<SerializeFieldsYamlBase.ErrorType>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionMiscellaneous errorException related to Java ReflectionsEncountered an unexpected type when deserializingEncountered an unknown field name when deserializingUnsupported data type -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static SerializeFieldsYamlBase.ErrorType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
REFLECTION
Exception related to Java Reflections -
MISC
Miscellaneous error -
UNSUPPORTED
Unsupported data type -
UNKNOWN_FIELD
Encountered an unknown field name when deserializing -
UNEXPECTED_TYPE
Encountered an unexpected type when deserializing
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-