Package org.hpccsystems.ws.client
Enum HPCCFileSprayClient.SprayVariableFormat
- java.lang.Object
-
- java.lang.Enum<HPCCFileSprayClient.SprayVariableFormat>
-
- org.hpccsystems.ws.client.HPCCFileSprayClient.SprayVariableFormat
-
- All Implemented Interfaces:
Serializable
,Comparable<HPCCFileSprayClient.SprayVariableFormat>
- Enclosing class:
- HPCCFileSprayClient
public static enum HPCCFileSprayClient.SprayVariableFormat extends Enum<HPCCFileSprayClient.SprayVariableFormat>
Used to declare variable data format of file to be sprayed
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DFUff_ascii
DFUff_csv
DFUff_fixed
DFUff_recfmv
DFUff_recfmvb
DFUff_utf16
DFUff_utf16be
DFUff_utf16le
DFUff_utf32
DFUff_utf32be
DFUff_utf32le
DFUff_utf8
DFUff_utf8n
DFUff_variable
DFUff_variablebigendian
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static HPCCFileSprayClient.SprayVariableFormat
convertVarSprayFormatName2Code(String varSprayFormatName)
Convert var spray format name 2 code.int
getValue()
Gets the value.static HPCCFileSprayClient.SprayVariableFormat
valueOf(String name)
Returns the enum constant of this type with the specified name.static HPCCFileSprayClient.SprayVariableFormat[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DFUff_fixed
public static final HPCCFileSprayClient.SprayVariableFormat DFUff_fixed
-
DFUff_csv
public static final HPCCFileSprayClient.SprayVariableFormat DFUff_csv
-
DFUff_ascii
public static final HPCCFileSprayClient.SprayVariableFormat DFUff_ascii
-
DFUff_utf8
public static final HPCCFileSprayClient.SprayVariableFormat DFUff_utf8
-
DFUff_utf8n
public static final HPCCFileSprayClient.SprayVariableFormat DFUff_utf8n
-
DFUff_utf16
public static final HPCCFileSprayClient.SprayVariableFormat DFUff_utf16
-
DFUff_utf16le
public static final HPCCFileSprayClient.SprayVariableFormat DFUff_utf16le
-
DFUff_utf16be
public static final HPCCFileSprayClient.SprayVariableFormat DFUff_utf16be
-
DFUff_utf32
public static final HPCCFileSprayClient.SprayVariableFormat DFUff_utf32
-
DFUff_utf32le
public static final HPCCFileSprayClient.SprayVariableFormat DFUff_utf32le
-
DFUff_utf32be
public static final HPCCFileSprayClient.SprayVariableFormat DFUff_utf32be
-
DFUff_variable
public static final HPCCFileSprayClient.SprayVariableFormat DFUff_variable
-
DFUff_recfmvb
public static final HPCCFileSprayClient.SprayVariableFormat DFUff_recfmvb
-
DFUff_recfmv
public static final HPCCFileSprayClient.SprayVariableFormat DFUff_recfmv
-
DFUff_variablebigendian
public static final HPCCFileSprayClient.SprayVariableFormat DFUff_variablebigendian
-
-
Method Detail
-
values
public static HPCCFileSprayClient.SprayVariableFormat[] 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 (HPCCFileSprayClient.SprayVariableFormat c : HPCCFileSprayClient.SprayVariableFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HPCCFileSprayClient.SprayVariableFormat 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
-
getValue
public int getValue()
Gets the value.- Returns:
- the value
-
convertVarSprayFormatName2Code
public static HPCCFileSprayClient.SprayVariableFormat convertVarSprayFormatName2Code(String varSprayFormatName)
Convert var spray format name 2 code.- Parameters:
varSprayFormatName
- the var spray format name- Returns:
- the spray variable format
-
-