@InterfaceAudience.Private public enum DataReadMethod extends Enum<DataReadMethod>
Enum Constant and Description |
---|
Disk |
Hadoop |
Memory |
Multiple |
Network |
Modifier and Type | Method and Description |
---|---|
static DataReadMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataReadMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataReadMethod Memory
public static final DataReadMethod Disk
public static final DataReadMethod Hadoop
public static final DataReadMethod Network
public static final DataReadMethod Multiple
public static DataReadMethod[] values()
for (DataReadMethod c : DataReadMethod.values()) System.out.println(c);
public static DataReadMethod 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 © 2017 The Apache Software Foundation. All rights reserved.