public static enum EncTL.ExpirationMethod extends Enum<EncTL.ExpirationMethod>
Note: This method only applies to jobs that "expire"; all other job events from the encapsulated queue are
processed as described in AbstractSimQueueComposite and AbstractEncapsulatorSimQueue.
| Enum Constant and Description |
|---|
AUTO_REVOCATION
The real job is auto-revoked.
|
DEPARTURE
The real job departs.
|
DROP
The real job is dropped.
|
| Modifier and Type | Method and Description |
|---|---|
static EncTL.ExpirationMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EncTL.ExpirationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncTL.ExpirationMethod DROP
public static final EncTL.ExpirationMethod AUTO_REVOCATION
public static final EncTL.ExpirationMethod DEPARTURE
This is the default setting.
public static EncTL.ExpirationMethod[] values()
for (EncTL.ExpirationMethod c : EncTL.ExpirationMethod.values()) System.out.println(c);
public static EncTL.ExpirationMethod 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 © 2018. All rights reserved.