public enum CommPattern extends Enum<CommPattern>
| Enum Constant and Description |
|---|
ChannelSet |
Input |
Mixed |
Output |
Synch |
| Modifier and Type | Method and Description |
|---|---|
static CommPattern |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommPattern[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommPattern Synch
public static final CommPattern Input
public static final CommPattern Output
public static final CommPattern Mixed
public static final CommPattern ChannelSet
public static CommPattern[] values()
for (CommPattern c : CommPattern.values()) System.out.println(c);
public static CommPattern 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 © 2003–2016 Community Z Tools Project. All rights reserved.