public enum Channel extends Enum<Channel>
| Enum Constant and Description |
|---|
C1 |
C10 |
C11 |
C12 |
C13 |
C14 |
C15 |
C16 |
C2 |
C3 |
C4 |
C5 |
C6 |
C7 |
C8 |
C9 |
| Modifier and Type | Method and Description |
|---|---|
byte |
getByte() |
static Channel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Channel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Channel C1
public static final Channel C2
public static final Channel C3
public static final Channel C4
public static final Channel C5
public static final Channel C6
public static final Channel C7
public static final Channel C8
public static final Channel C9
public static final Channel C10
public static final Channel C11
public static final Channel C12
public static final Channel C13
public static final Channel C14
public static final Channel C15
public static final Channel C16
public static Channel[] values()
for (Channel c : Channel.values()) System.out.println(c);
public static Channel 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 byte getByte()
Copyright © 2014. All Rights Reserved.