Class EagerNClass

  • All Implemented Interfaces:
    NClass, NType

    public class EagerNClass
    extends java.lang.Object
    implements NClass
    Author:
    Kohsuke Kawaguchi
    • Constructor Summary

      Constructors 
      Constructor Description
      EagerNClass​(java.lang.Class type)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object o)  
      java.lang.String fullName()
      Human readable name of this type.
      int hashCode()  
      boolean isAbstract()  
      boolean isBoxedType()
      Returns true iff this type represents a class that has a unboxed form.
      JClass toType​(Outline o, Aspect aspect)
      Returns the representation of this type in code model.
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface com.sun.tools.xjc.model.nav.NType

        fullName
    • Constructor Detail

      • EagerNClass

        public EagerNClass​(java.lang.Class type)
    • Method Detail

      • isBoxedType

        public boolean isBoxedType()
        Description copied from interface: NType
        Returns true iff this type represents a class that has a unboxed form. For example, for String this is false, but for Integer this is true.
        Specified by:
        isBoxedType in interface NType
      • toType

        public JClass toType​(Outline o,
                             Aspect aspect)
        Description copied from interface: NType
        Returns the representation of this type in code model.

        This operation requires the whole model to be built, and hence it takes Outline.

        Under some code generation strategy, some bean classes are considered implementation specific (such as impl.FooImpl class) These classes always have accompanying "exposed" type (such as the Foo interface).

        For such Jekyll and Hyde type, the aspect parameter determines which personality is returned.

        Specified by:
        toType in interface NClass
        Specified by:
        toType in interface NType
        aspect - If Aspect.IMPLEMENTATION, this method returns the implementation specific class that this type represents. If Aspect.EXPOSED, this method returns the publicly exposed type that this type represents. For ordinary classes, the aspect parameter is meaningless.
      • isAbstract

        public boolean isAbstract()
        Specified by:
        isAbstract in interface NClass
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • fullName

        public java.lang.String fullName()
        Description copied from interface: NType
        Human readable name of this type.
        Specified by:
        fullName in interface NType