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