Enum JSTypeRegistry.ResolveMode

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      IMMEDIATE
      Expressions and type names are evaluated aggressively.
      LAZY_EXPRESSIONS
      Expressions are converted into Unknown blobs that can be resolved into complex types.
      LAZY_NAMES
      Expressions are evaluated.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static JSTypeRegistry.ResolveMode valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static JSTypeRegistry.ResolveMode[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • LAZY_EXPRESSIONS

        public static final JSTypeRegistry.ResolveMode LAZY_EXPRESSIONS
        Expressions are converted into Unknown blobs that can be resolved into complex types.
      • LAZY_NAMES

        public static final JSTypeRegistry.ResolveMode LAZY_NAMES
        Expressions are evaluated. If any names in the expression point to unknown types, then we create a proxy NamedType structure until the type can be resolved. This is the legacy way of resolving ways, and may not exist in the future.
      • IMMEDIATE

        public static final JSTypeRegistry.ResolveMode IMMEDIATE
        Expressions and type names are evaluated aggressively. A warning will be emitted if a type name fails to resolve to a real type.
    • Method Detail

      • values

        public static JSTypeRegistry.ResolveMode[] 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 (JSTypeRegistry.ResolveMode c : JSTypeRegistry.ResolveMode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static JSTypeRegistry.ResolveMode 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 name
        java.lang.NullPointerException - if the argument is null