public enum RealDataType extends Enum<RealDataType>
| Enum Constant and Description |
|---|
AUDIO |
BOTH |
CENTRAL_BROADCAST |
PENETRATE |
VIDEO |
| Modifier and Type | Method and Description |
|---|---|
static RealDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RealDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RealDataType BOTH
public static final RealDataType VIDEO
public static final RealDataType AUDIO
public static final RealDataType CENTRAL_BROADCAST
public static final RealDataType PENETRATE
public static RealDataType[] values()
for (RealDataType c : RealDataType.values()) System.out.println(c);
public static RealDataType 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 © 2020. All rights reserved.