public enum FioPrecipType extends Enum<FioPrecipType>
| Modifier and Type | Method and Description |
|---|---|
static FioPrecipType |
findByJsonValue(String jsonValue) |
static FioPrecipType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FioPrecipType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FioPrecipType RAIN
public static final FioPrecipType SNOW
public static final FioPrecipType SLEET
public static final FioPrecipType UNKNOWN
public static FioPrecipType[] values()
for (FioPrecipType c : FioPrecipType.values()) System.out.println(c);
public static FioPrecipType 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 FioPrecipType findByJsonValue(String jsonValue)
Copyright © 2016. All rights reserved.