public enum NetsenseSeed extends Enum<NetsenseSeed> implements io.apisense.dart.api.Seed
| Enum Constant and Description |
|---|
TIMESTAMP |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(String label) |
boolean |
matches(int value) |
static EnumSet<NetsenseSeed> |
parse(int... codes) |
static EnumSet<NetsenseSeed> |
parse(String... labels) |
String |
toString() |
Class |
type() |
int |
value() |
static NetsenseSeed |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NetsenseSeed[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NetsenseSeed TIMESTAMP
public static NetsenseSeed[] values()
for (NetsenseSeed c : NetsenseSeed.values()) System.out.println(c);
public static NetsenseSeed 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 int value()
value in interface io.apisense.dart.api.Seedpublic Class type()
public final boolean matches(int value)
matches in interface io.apisense.dart.api.Seedpublic final boolean equals(String label)
public final String toString()
toString in class Enum<NetsenseSeed>public static final EnumSet<NetsenseSeed> parse(String... labels)
public static final EnumSet<NetsenseSeed> parse(int... codes)