Enum AggregationType

java.lang.Object
java.lang.Enum<AggregationType>
ch.qos.logback.core.util.AggregationType
All Implemented Interfaces:
Serializable, Comparable<AggregationType>, java.lang.constant.Constable

public enum AggregationType extends Enum<AggregationType>
AggregationType classifies how one object is contained within another object. See also http://en.wikipedia.org/wiki/Class_diagram and http://en.wikipedia.org/wiki/Object_composition
Author:
Ceki Gulcu
  • Enum Constant Details

    • NOT_FOUND

      public static final AggregationType NOT_FOUND
    • AS_BASIC_PROPERTY

      public static final AggregationType AS_BASIC_PROPERTY
    • AS_COMPLEX_PROPERTY

      public static final AggregationType AS_COMPLEX_PROPERTY
    • AS_BASIC_PROPERTY_COLLECTION

      public static final AggregationType AS_BASIC_PROPERTY_COLLECTION
    • AS_COMPLEX_PROPERTY_COLLECTION

      public static final AggregationType AS_COMPLEX_PROPERTY_COLLECTION
  • Method Details

    • values

      public static AggregationType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static AggregationType valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null