public enum OwnershipType extends java.lang.Enum<OwnershipType>
| Enum Constant and Description |
|---|
BUSINESS_OWNER |
CONSUMER |
DATA_STEWARD |
DATAOWNER |
DELEGATE |
DEVELOPER |
NONE |
PRODUCER |
STAKEHOLDER |
TECHNICAL_OWNER |
| Modifier and Type | Method and Description |
|---|---|
static OwnershipType |
fromValue(java.lang.String text) |
java.lang.String |
toString() |
static OwnershipType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OwnershipType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OwnershipType TECHNICAL_OWNER
public static final OwnershipType BUSINESS_OWNER
public static final OwnershipType DATA_STEWARD
public static final OwnershipType NONE
public static final OwnershipType DEVELOPER
public static final OwnershipType DATAOWNER
public static final OwnershipType DELEGATE
public static final OwnershipType PRODUCER
public static final OwnershipType CONSUMER
public static final OwnershipType STAKEHOLDER
public static OwnershipType[] values()
for (OwnershipType c : OwnershipType.values()) System.out.println(c);
public static OwnershipType 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<OwnershipType>public static OwnershipType fromValue(java.lang.String text)