public enum WireType extends Enum<WireType>
Enum Constant and Description |
---|
IGNORED
Indicates that a class is not annotated with anything relevant to the artemis-world.
|
SKIPWIRE
Indicates that a class is annotated with
SkipWire |
WIRE
Indicates that a class is (implicitly or explicitly) annotated
with
Wire . |
Modifier and Type | Method and Description |
---|---|
static WireType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WireType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WireType WIRE
Wire
.public static final WireType IGNORED
public static WireType[] values()
for (WireType c : WireType.values()) System.out.println(c);
public static WireType 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 © 2019. All rights reserved.