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 Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum 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 Summary
Modifier and TypeMethodDescriptionstatic ResourceType
getById
(int id) Returns the ResourceType for the given ID.int
getId()
boolean
Returns whether this resource type represents an archive containing classes.static ResourceType
Returns 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_RESOURCE
Represents a classpath resource that will be on the classpath of the Jet job. -
FILE
Represents a plain file. It will be available to the Jet job by its ID, throughProcessorSupplier.Context.attachedFile(java.lang.String)
. -
DIRECTORY
Represents a directory of plain files. It will be available to the Jet job by its ID, throughProcessorSupplier.Context.attachedDirectory(java.lang.String)
. -
CLASS
Represents a class that will be on the classpath of the Jet job. -
JAR
Represents a JAR file whose classes will be on the classpath of the Jet job. -
JARS_IN_ZIP
Represents a ZIP file that contains JAR files, all of whose classes will be on the classpath of the Jet job.
-
-
Method Details
-
values
Returns 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
-
valueOf
Returns 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 nameNullPointerException
- if the argument is null
-
getId
public int getId()- See Also:
-
id
-
isClassArchive
public boolean isClassArchive()Returns whether this resource type represents an archive containing classes. -
getById
Returns the ResourceType for the given ID.- Returns:
- the ResourceType found or null if not found
-