Package org.apache.hop.resource
Enum IResourceNaming.FileNamingType
- java.lang.Object
-
- java.lang.Enum<IResourceNaming.FileNamingType>
-
- org.apache.hop.resource.IResourceNaming.FileNamingType
-
- All Implemented Interfaces:
Serializable,Comparable<IResourceNaming.FileNamingType>
- Enclosing interface:
- IResourceNaming
public static enum IResourceNaming.FileNamingType extends Enum<IResourceNaming.FileNamingType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATA_FILEPIPELINESHELL_SCRIPTWORKFLOW
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IResourceNaming.FileNamingTypevalueOf(String name)Returns the enum constant of this type with the specified name.static IResourceNaming.FileNamingType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PIPELINE
public static final IResourceNaming.FileNamingType PIPELINE
-
WORKFLOW
public static final IResourceNaming.FileNamingType WORKFLOW
-
DATA_FILE
public static final IResourceNaming.FileNamingType DATA_FILE
-
SHELL_SCRIPT
public static final IResourceNaming.FileNamingType SHELL_SCRIPT
-
-
Method Detail
-
values
public static IResourceNaming.FileNamingType[] 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 (IResourceNaming.FileNamingType c : IResourceNaming.FileNamingType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IResourceNaming.FileNamingType 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
-
-