Package com.hazelcast.jet.config
Enum Class ResourceType
- All Implemented Interfaces:
- Serializable,- Comparable<ResourceType>,- Constable
Represents the type of the resource to be uploaded.
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionRepresents a class that will be on the classpath of the Jet job.Represents a classpath resource that will be on the classpath of the Jet job.Represents a directory of plain files.Represents a plain file.Represents a JAR file whose classes will be on the classpath of the Jet job.Represents a ZIP file that contains JAR files, all of whose classes will be on the classpath of the Jet job.
- 
Method SummaryModifier and TypeMethodDescriptionstatic ResourceTypegetById(int id) Returns the ResourceType for the given ID.intgetId()booleanReturns whether this resource type represents an archive containing classes.static ResourceTypeReturns the enum constant of this class with the specified name.static ResourceType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
CLASSPATH_RESOURCERepresents a classpath resource that will be on the classpath of the Jet job.
- 
FILERepresents a plain file. It will be available to the Jet job by its ID, throughProcessorSupplier.Context.attachedFile(java.lang.String).
- 
DIRECTORYRepresents a directory of plain files. It will be available to the Jet job by its ID, throughProcessorSupplier.Context.attachedDirectory(java.lang.String).
- 
CLASSRepresents a class that will be on the classpath of the Jet job.
- 
JARRepresents a JAR file whose classes will be on the classpath of the Jet job.
- 
JARS_IN_ZIPRepresents a ZIP file that contains JAR files, all of whose classes will be on the classpath of the Jet job.
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
- NullPointerException- if the argument is null
 
- 
getIdpublic int getId()- See Also:
- 
- id
 
 
- 
isClassArchivepublic boolean isClassArchive()Returns whether this resource type represents an archive containing classes.
- 
getByIdReturns the ResourceType for the given ID.- Returns:
- the ResourceType found or null if not found
 
 
-