Enum Class WorkingSet.Member.Kind
- All Implemented Interfaces:
Serializable, Comparable<WorkingSet.Member.Kind>, Constable
- Enclosing class:
WorkingSet.Member
The role a
WorkingSet.Member plays in its WorkingSet.
"Subproject" is a member kind, never the organizing unit —
the working set is the unit, and the aggregator is one of its
members (#764).-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe workspace root that aggregates the subprojects — and, for a single-repository working set, the sole member, which is the root of its own trivial set.A declared subproject of a workspace. -
Method Summary
Modifier and TypeMethodDescriptionstatic WorkingSet.Member.KindReturns the enum constant of this class with the specified name.static WorkingSet.Member.Kind[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SUBPROJECT
A declared subproject of a workspace. -
AGGREGATOR
The workspace root that aggregates the subprojects — and, for a single-repository working set, the sole member, which is the root of its own trivial set.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-