Class ConstructorDefinition


  • public class ConstructorDefinition
    extends java.lang.Object
    A constructor definition.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private boolean isNull
      isNull flag.
      private java.lang.String propertyName
      Property name.
      private java.lang.Class type
      The type.
    • Constructor Summary

      Constructors 
      Constructor Description
      ConstructorDefinition​(java.lang.String propertyName, java.lang.Class type)
      Creates a new constructor definition.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getPropertyName()
      Returns the property name.
      java.lang.Class getType()
      Returns the type.
      boolean isNull()
      Returns a flag.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • isNull

        private boolean isNull
        isNull flag.
      • propertyName

        private java.lang.String propertyName
        Property name.
      • type

        private java.lang.Class type
        The type.
    • Constructor Detail

      • ConstructorDefinition

        public ConstructorDefinition​(java.lang.String propertyName,
                                     java.lang.Class type)
        Creates a new constructor definition.
        Parameters:
        propertyName - the property name.
        type - the type.
    • Method Detail

      • getType

        public java.lang.Class getType()
        Returns the type.
        Returns:
        the type.
      • isNull

        public boolean isNull()
        Returns a flag.
        Returns:
        a boolean.
      • getPropertyName

        public java.lang.String getPropertyName()
        Returns the property name.
        Returns:
        the property name.