public enum OwnershipSourceType extends java.lang.Enum<OwnershipSourceType>
| Enum Constant and Description |
|---|
AUDIT |
DATABASE |
FILE_SYSTEM |
ISSUE_TRACKING_SYSTEM |
MANUAL |
OTHER |
SERVICE |
SOURCE_CONTROL |
| Modifier and Type | Method and Description |
|---|---|
static OwnershipSourceType |
fromValue(java.lang.String text) |
java.lang.String |
toString() |
static OwnershipSourceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OwnershipSourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OwnershipSourceType AUDIT
public static final OwnershipSourceType DATABASE
public static final OwnershipSourceType FILE_SYSTEM
public static final OwnershipSourceType ISSUE_TRACKING_SYSTEM
public static final OwnershipSourceType MANUAL
public static final OwnershipSourceType SERVICE
public static final OwnershipSourceType SOURCE_CONTROL
public static final OwnershipSourceType OTHER
public static OwnershipSourceType[] values()
for (OwnershipSourceType c : OwnershipSourceType.values()) System.out.println(c);
public static OwnershipSourceType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<OwnershipSourceType>public static OwnershipSourceType fromValue(java.lang.String text)