public enum Hazard extends Enum<Hazard>
| Modifier and Type | Method and Description |
|---|---|
static Hazard |
find(int source) |
static Hazard |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Hazard[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Hazard NIL
public static final Hazard LIGHT
public static final Hazard MODERATE
public static final Hazard SEVERE
public static Hazard[] values()
for (Hazard c : Hazard.values()) System.out.println(c);
public static Hazard 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 static Hazard find(int source)
Copyright © 2020. All rights reserved.