public enum JobAttachmentType extends Enum<JobAttachmentType>
| Enum Constant and Description |
|---|
INPUT_ATTACHMENT
The job attachment is an input attachment.
|
OUTPUT_ATTACHMENT
The job attachment is an output attachment.
|
| Modifier and Type | Method and Description |
|---|---|
static JobAttachmentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobAttachmentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobAttachmentType OUTPUT_ATTACHMENT
public static final JobAttachmentType INPUT_ATTACHMENT
public static JobAttachmentType[] values()
for (JobAttachmentType c : JobAttachmentType.values()) System.out.println(c);
public static JobAttachmentType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015–2017 IBM Corporation. Licensed under the Apache License, Version 2.0.