public static enum Tlsf.Semantics extends java.lang.Enum<Tlsf.Semantics>
Enum Constant | Description |
---|---|
MEALY |
|
MEALY_STRICT |
|
MOORE |
|
MOORE_STRICT |
Modifier and Type | Method | Description |
---|---|---|
boolean |
isMealy() |
|
boolean |
isMoore() |
|
boolean |
isStrict() |
|
static Tlsf.Semantics |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static Tlsf.Semantics[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Tlsf.Semantics MEALY
public static final Tlsf.Semantics MEALY_STRICT
public static final Tlsf.Semantics MOORE
public static final Tlsf.Semantics MOORE_STRICT
public static Tlsf.Semantics[] values()
for (Tlsf.Semantics c : Tlsf.Semantics.values()) System.out.println(c);
public static Tlsf.Semantics 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 nullpublic boolean isMealy()
public boolean isMoore()
public boolean isStrict()