- java.lang.Object
-
- java.lang.Enum<ReadMDF.ExtractionMode>
-
- com.pervasive.datarush.operators.io.mdf.ReadMDF.ExtractionMode
-
- All Implemented Interfaces:
Serializable
,Comparable<ReadMDF.ExtractionMode>
- Enclosing class:
- ReadMDF
public static enum ReadMDF.ExtractionMode extends Enum<ReadMDF.ExtractionMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ATTACHMENT
DATA
METADATA
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ReadMDF.ExtractionMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static ReadMDF.ExtractionMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DATA
public static final ReadMDF.ExtractionMode DATA
-
ATTACHMENT
public static final ReadMDF.ExtractionMode ATTACHMENT
-
METADATA
public static final ReadMDF.ExtractionMode METADATA
-
-
Method Detail
-
values
public static ReadMDF.ExtractionMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ReadMDF.ExtractionMode c : ReadMDF.ExtractionMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReadMDF.ExtractionMode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-