Class FieldResume


  • public class FieldResume
    extends java.lang.Object
    Resume exiting fields from douidefinition.xml
    Since:
    12.0.0
    Version:
    $Revision: 23035 $ $Date: 2019-08-05 16:55:10 -0300 (Mon, 05 Aug 2019) $
    • Constructor Summary

      Constructors 
      Constructor Description
      FieldResume()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getColumnName()
      Returns the column name.
      java.lang.String getDataType()
      Returns the data type.
      java.lang.String getId()
      Returns the id.
      java.lang.String getName()
      Returns the name.
      boolean isIntroduction()
      Returns true when field is introduction.
      boolean isKeywords()
      Returns true when field is keywords.
      boolean isPrimaryKey()
      Returns true when field is primary key.
      boolean isPrimaryName()
      Returns true when field is primary name.
      boolean isRequired()
      Returns true when field is required.
      boolean isSearchable()
      Returns true when field is searchable.
      void setColumnName​(java.lang.String columnName)
      Sets the column name.
      void setDataType​(java.lang.String dataType)
      Sets the data type.
      void setId​(java.lang.String id)
      Sets the id.
      void setIntroduction​(boolean introduction)
      Sets if field is introduction.
      void setKeywords​(boolean keywords)
      Sets if field is keywords.
      void setName​(java.lang.String name)
      Sets the name.
      void setPrimaryKey​(boolean primaryKey)
      Sets if field is primary key.
      void setPrimaryName​(boolean primaryName)
      Sets if field is primary name.
      void setRequired​(boolean required)
      Sets if field is required.
      void setSearchable​(boolean searchable)
      Sets if field is searchable.
      • Methods inherited from class java.lang.Object

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

      • FieldResume

        public FieldResume()
    • Method Detail

      • getId

        public java.lang.String getId()
        Returns the id.
        Returns:
        the id.
        Since:
        12.0.0
      • setId

        public void setId​(java.lang.String id)
        Sets the id.
        Parameters:
        id - the id.
        Since:
        12.0.0
      • getName

        public java.lang.String getName()
        Returns the name.
        Returns:
        the name.
        Since:
        12.0.0
      • setName

        public void setName​(java.lang.String name)
        Sets the name.
        Parameters:
        name - the name.
        Since:
        12.0.0
      • getDataType

        public java.lang.String getDataType()
        Returns the data type.
        Returns:
        the data type.
        Since:
        12.0.0
      • setDataType

        public void setDataType​(java.lang.String dataType)
        Sets the data type.
        Parameters:
        dataType - the data type.
        Since:
        12.0.0
      • isIntroduction

        public boolean isIntroduction()
        Returns true when field is introduction.
        Returns:
        true when field is introduction.
        Since:
        12.0.0
      • setIntroduction

        public void setIntroduction​(boolean introduction)
        Sets if field is introduction.
        Parameters:
        introduction - the boolean option.
        Since:
        12.0.0
      • isKeywords

        public boolean isKeywords()
        Returns true when field is keywords.
        Returns:
        true when field is keywords.
        Since:
        12.0.0
      • setKeywords

        public void setKeywords​(boolean keywords)
        Sets if field is keywords.
        Parameters:
        keywords - the boolean option.
        Since:
        12.0.0
      • isPrimaryKey

        public boolean isPrimaryKey()
        Returns true when field is primary key.
        Returns:
        true when field is primary key.
        Since:
        12.0.0
      • setPrimaryKey

        public void setPrimaryKey​(boolean primaryKey)
        Sets if field is primary key.
        Parameters:
        primaryKey - the boolean option.
        Since:
        12.0.0
      • isPrimaryName

        public boolean isPrimaryName()
        Returns true when field is primary name.
        Returns:
        true when field is primary name.
        Since:
        12.0.0
      • setPrimaryName

        public void setPrimaryName​(boolean primaryName)
        Sets if field is primary name.
        Parameters:
        primaryName - the boolean option.
        Since:
        12.0.0
      • isSearchable

        public boolean isSearchable()
        Returns true when field is searchable.
        Returns:
        true when field is searchable.
        Since:
        12.0.0
      • setSearchable

        public void setSearchable​(boolean searchable)
        Sets if field is searchable.
        Parameters:
        searchable - the boolean option.
        Since:
        12.0.0
      • isRequired

        public boolean isRequired()
        Returns true when field is required.
        Returns:
        true when field is required.
        Since:
        12.0.0
      • setRequired

        public void setRequired​(boolean required)
        Sets if field is required.
        Parameters:
        required - the boolean option.
        Since:
        12.0.0
      • getColumnName

        public java.lang.String getColumnName()
        Returns the column name.
        Returns:
        the column name.
        Since:
        12.0.0
      • setColumnName

        public void setColumnName​(java.lang.String columnName)
        Sets the column name.
        Parameters:
        columnName - the column name.
        Since:
        12.0.0