public enum DecodedDuration extends java.lang.Enum<DecodedDuration>
DecodedDuration is an enumeration defining constants for the
time periods SoftSpot can configured to display the decoded icon for.| Enum Constant and Description |
|---|
Sec0
0 seconds
|
Sec1
1 second
|
Sec2
2 seconds
|
Sec3
3 seconds
|
Sec4
4 seconds
|
| Modifier and Type | Method and Description |
|---|---|
static DecodedDuration |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DecodedDuration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DecodedDuration Sec0
public static final DecodedDuration Sec1
public static final DecodedDuration Sec2
public static final DecodedDuration Sec3
public static final DecodedDuration Sec4
public static DecodedDuration[] values()
for (DecodedDuration c : DecodedDuration.values()) System.out.println(c);
public static DecodedDuration valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null