public enum DecodeQualification extends Enum<DecodeQualification>
Enum Constant and Description |
---|
INTENDED
The reader is intended to decode a given input.
|
SUITABLE
The reader is suitable to decode a given input, but has not specifically been designed for it.
|
UNABLE
The reader is unable to decode a given input.
|
Modifier and Type | Method and Description |
---|---|
static DecodeQualification |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DecodeQualification[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DecodeQualification INTENDED
public static final DecodeQualification SUITABLE
public static final DecodeQualification UNABLE
public static DecodeQualification[] values()
for (DecodeQualification c : DecodeQualification.values()) System.out.println(c);
public static DecodeQualification valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2014–2022 European Space Agency (ESA). All rights reserved.