Enum Reference.Type

java.lang.Object
java.lang.Enum<Reference.Type>
io.smallrye.common.ref.Reference.Type
All Implemented Interfaces:
Serializable, Comparable<Reference.Type>, java.lang.constant.Constable
Enclosing interface:
Reference<T,A>

public static enum Reference.Type extends Enum<Reference.Type>
A reference type.
  • Enum Constant Details

  • Method Details

    • values

      public static Reference.Type[] 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 Reference.Type 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
    • isFull

      public static boolean isFull(EnumSet<Reference.Type> set)
      Determine whether the given set is fully populated (or "full"), meaning it contains all possible values.
      Parameters:
      set - the set
      Returns:
      true if the set is full, false otherwise
    • in

      public boolean in(Reference.Type v1)
      Determine whether this instance is equal to one of the given instances.
      Parameters:
      v1 - the first instance
      Returns:
      true if one of the instances matches this one, false otherwise
    • in

      public boolean in(Reference.Type v1, Reference.Type v2)
      Determine whether this instance is equal to one of the given instances.
      Parameters:
      v1 - the first instance
      v2 - the second instance
      Returns:
      true if one of the instances matches this one, false otherwise
    • in

      public boolean in(Reference.Type v1, Reference.Type v2, Reference.Type v3)
      Determine whether this instance is equal to one of the given instances.
      Parameters:
      v1 - the first instance
      v2 - the second instance
      v3 - the third instance
      Returns:
      true if one of the instances matches this one, false otherwise
    • in

      public boolean in(Reference.Type... values)
      Determine whether this instance is equal to one of the given instances.
      Parameters:
      values - the possible values
      Returns:
      true if one of the instances matches this one, false otherwise