public enum ContributorKind extends Enum<ContributorKind>
ITypeManifold
toward the completeness of projected sourceEnum Constant and Description |
---|
None
Does not contribute source.
|
Partial
Cooperates with other manifolds to collectively provide complete valid source.
|
Primary
Contributes complete valid source and does not depend on contributions from other manifolds,
however other manifolds may augment the primary source.
|
Supplemental
Supplements the source produced from a Primary manifold or set of Partial manifolds.
|
Modifier and Type | Method and Description |
---|---|
static ContributorKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContributorKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContributorKind Primary
public static final ContributorKind Partial
public static final ContributorKind Supplemental
public static final ContributorKind None
public static ContributorKind[] values()
for (ContributorKind c : ContributorKind.values()) System.out.println(c);
public static ContributorKind 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 © 2024. All rights reserved.