public enum RebValidationState extends Enum<RebValidationState>
| Enum Constant and Description |
|---|
INVALID
INVALID state: the serial number configuration parameter does not match the
serial number read from the reb board.
|
UNKNOWN
UNKNOWN state: No validation has been performed.
|
VALID
VALID state: the serial number configuration parameter matches the
serial number read from the reb board.
|
| Modifier and Type | Method and Description |
|---|---|
static RebValidationState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RebValidationState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RebValidationState UNKNOWN
public static final RebValidationState VALID
public static final RebValidationState INVALID
public static RebValidationState[] values()
for (RebValidationState c : RebValidationState.values()) System.out.println(c);
public static RebValidationState 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 © 2024 LSST. All rights reserved.