public enum DipQualityEnum extends Enum<DipQualityEnum>
Enum Constant and Description |
---|
BAD |
GOOD |
UNCERTAIN |
UNINITIALIZED |
Modifier and Type | Method and Description |
---|---|
int |
intValue() |
static DipQualityEnum |
valueOf(int intValue) |
static DipQualityEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DipQualityEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DipQualityEnum UNINITIALIZED
public static final DipQualityEnum BAD
public static final DipQualityEnum GOOD
public static final DipQualityEnum UNCERTAIN
public static DipQualityEnum[] values()
for (DipQualityEnum c : DipQualityEnum.values()) System.out.println(c);
public static DipQualityEnum 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 nullpublic int intValue()
public static DipQualityEnum valueOf(int intValue)
Copyright © 2008–2017 CERN. All rights reserved.