Package org.cyclonedx.model
Enum Composition.Aggregate
- java.lang.Object
-
- java.lang.Enum<Composition.Aggregate>
-
- org.cyclonedx.model.Composition.Aggregate
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Composition.Aggregate>
- Enclosing class:
- Composition
public static enum Composition.Aggregate extends java.lang.Enum<Composition.Aggregate>
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Stringname
-
Constructor Summary
Constructors Modifier Constructor Description privateAggregate(java.lang.String name)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetAggregateName()static Composition.AggregatevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Composition.Aggregate[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMPLETE
public static final Composition.Aggregate COMPLETE
-
INCOMPLETE
public static final Composition.Aggregate INCOMPLETE
-
INCOMPLETE_FIRST_PARTY_ONLY
public static final Composition.Aggregate INCOMPLETE_FIRST_PARTY_ONLY
-
INCOMPLETE_FIRST_PARTY_PROPRIETARY_ONLY
public static final Composition.Aggregate INCOMPLETE_FIRST_PARTY_PROPRIETARY_ONLY
-
INCOMPLETE_FIRST_PARTY_OPENSOURCE_ONLY
public static final Composition.Aggregate INCOMPLETE_FIRST_PARTY_OPENSOURCE_ONLY
-
INCOMPLETE_THIRD_PARTY_ONLY
public static final Composition.Aggregate INCOMPLETE_THIRD_PARTY_ONLY
-
INCOMPLETE_THIRD_PARTY_PROPRIETARY_ONLY
public static final Composition.Aggregate INCOMPLETE_THIRD_PARTY_PROPRIETARY_ONLY
-
INCOMPLETE_THIRD_PARTY_OPENSOURCE_ONLY
public static final Composition.Aggregate INCOMPLETE_THIRD_PARTY_OPENSOURCE_ONLY
-
UNKNOWN
public static final Composition.Aggregate UNKNOWN
-
NOT_SPECIFIED
public static final Composition.Aggregate NOT_SPECIFIED
-
-
Method Detail
-
values
public static Composition.Aggregate[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Composition.Aggregate c : Composition.Aggregate.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Composition.Aggregate valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getAggregateName
public java.lang.String getAggregateName()
-
-