public enum CauseType extends Enum<CauseType>
| Enum Constant and Description |
|---|
MANUAL |
REMOTE |
SCMTRIGGERED |
TIMERTRIGGERED |
UNKNOWN |
UPSTREAM |
| Modifier and Type | Method and Description |
|---|---|
static CauseType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CauseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CauseType UNKNOWN
public static final CauseType REMOTE
public static final CauseType UPSTREAM
public static final CauseType MANUAL
public static final CauseType SCMTRIGGERED
public static final CauseType TIMERTRIGGERED
public static CauseType[] values()
for (CauseType c : CauseType.values()) System.out.println(c);
public static CauseType 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 © 2004-2012. All Rights Reserved.