Enum DFUFileTypeWrapper
- java.lang.Object
-
- java.lang.Enum<DFUFileTypeWrapper>
-
- org.hpccsystems.ws.client.wrappers.wsdfu.DFUFileTypeWrapper
-
- All Implemented Interfaces:
Serializable,Comparable<DFUFileTypeWrapper>
public enum DFUFileTypeWrapper extends Enum<DFUFileTypeWrapper>
DFUFileTypeWrapper Simple wrapper around WSDFU file type enum generated stub Provides layer of indirection between caller and ESP version specific logic
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CsvFlatIndexIndexLocalIndexPartitionedJsonXml
-
Field Summary
Fields Modifier and Type Field Description protected StringtheDFUFileType
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DFUFileTypeWrapperfromDfuFileType(org.hpccsystems.ws.client.gen.axis2.wsdfu.latest.DFUFileType filetype)From dfu file type.static DFUFileTypeWrapperfromString(String value)From string.static DFUFileTypeWrapperget(String name)Gets the.org.hpccsystems.ws.client.gen.axis2.wsdfu.latest.DFUFileTypegetFUFileType()Gets the FU file type.booleanisIndex()Gets isIndexStringtoString()static DFUFileTypeWrappervalueOf(String name)Returns the enum constant of this type with the specified name.static DFUFileTypeWrapper[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Flat
public static final DFUFileTypeWrapper Flat
-
Index
public static final DFUFileTypeWrapper Index
-
Xml
public static final DFUFileTypeWrapper Xml
-
Csv
public static final DFUFileTypeWrapper Csv
-
Json
public static final DFUFileTypeWrapper Json
-
IndexLocal
public static final DFUFileTypeWrapper IndexLocal
-
IndexPartitioned
public static final DFUFileTypeWrapper IndexPartitioned
-
-
Field Detail
-
theDFUFileType
protected String theDFUFileType
-
-
Method Detail
-
values
public static DFUFileTypeWrapper[] 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 (DFUFileTypeWrapper c : DFUFileTypeWrapper.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DFUFileTypeWrapper 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<DFUFileTypeWrapper>
-
get
public static DFUFileTypeWrapper get(String name)
Gets the.- Parameters:
name- the name- Returns:
- the DFU file type wrapper
-
fromString
public static DFUFileTypeWrapper fromString(String value)
From string.- Parameters:
value- the value- Returns:
- the DFU file type wrapper
-
getFUFileType
public org.hpccsystems.ws.client.gen.axis2.wsdfu.latest.DFUFileType getFUFileType()
Gets the FU file type.- Returns:
- the FU file type
-
isIndex
public boolean isIndex()
Gets isIndex- Returns:
- isIndex
-
fromDfuFileType
public static DFUFileTypeWrapper fromDfuFileType(org.hpccsystems.ws.client.gen.axis2.wsdfu.latest.DFUFileType filetype)
From dfu file type.- Parameters:
filetype- the filetype- Returns:
- the DFU file type wrapper
-
-