Enum Class TypeMatchingStrategy

java.lang.Object
java.lang.Enum<TypeMatchingStrategy>
com.google.javascript.jscomp.TypeMatchingStrategy
All Implemented Interfaces:
Serializable, Comparable<TypeMatchingStrategy>, Constable

public enum TypeMatchingStrategy extends Enum<TypeMatchingStrategy>
The different strategies for matching the JSType of nodes.
  • Enum Constant Details

    • LOOSE

      public static final TypeMatchingStrategy LOOSE
      Matches type or any subtype. Matches types with different nullability/voidability. Allows loose matches.
    • STRICT_NULLABILITY

      public static final TypeMatchingStrategy STRICT_NULLABILITY
      Matches type or any subtype. Does not match types with different nullability/voidability. Allows loose matches.
    • SUBTYPES

      public static final TypeMatchingStrategy SUBTYPES
      Matches type or any subtype. Does not match types with different nullability/voidability. Does not allow loose matches.
    • EXACT

      public static final TypeMatchingStrategy EXACT
      Does not match subtypes. Does not match types with different nullability/voidability. Does not allow loose matches.
  • Method Details

    • values

      public static TypeMatchingStrategy[] 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

      public static TypeMatchingStrategy valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • match

      public TypeMatchingStrategy.MatchResult match(JSType templateType, JSType type)