Enum WUFileType
- java.lang.Object
-
- java.lang.Enum<WUFileType>
-
- org.hpccsystems.ws.client.wrappers.WUFileType
-
- All Implemented Interfaces:
Serializable,Comparable<WUFileType>
public enum WUFileType extends Enum<WUFileType>
Enums representing the string values expected by WUFile queries for "filetype". Extracted from wsWorkunitsService.cpp, CWsWorkunitsEx::onWUFile- Author:
- LeedDX
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ArchiveQueryCPPDDLEclAgentLogRESThorLogThorSlaveLogWUECLXML
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WUFileTypevalueOf(String name)Returns the enum constant of this type with the specified name.static WUFileType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CPP
public static final WUFileType CPP
-
ThorLog
public static final WUFileType ThorLog
-
ThorSlaveLog
public static final WUFileType ThorSlaveLog
-
EclAgentLog
public static final WUFileType EclAgentLog
-
XML
public static final WUFileType XML
-
RES
public static final WUFileType RES
-
DDL
public static final WUFileType DDL
-
WUECL
public static final WUFileType WUECL
-
ArchiveQuery
public static final WUFileType ArchiveQuery
-
-
Method Detail
-
values
public static WUFileType[] 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 (WUFileType c : WUFileType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WUFileType 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
-
-