Class ClientInfoProperty

java.lang.Object
com.github.jinahya.database.metadata.bind.ClientInfoProperty
All Implemented Interfaces:
MetadataType, Serializable

public class ClientInfoProperty extends Object
A class for binding results of the DatabaseMetaData.getClientInfoProperties() method.
Author:
Jin Kwon <jinahya_at_gmail.com>
See Also:
  • Field Details

    • COLUMN_LABEL_NAME

      public static final String COLUMN_LABEL_NAME
      The column label of "NAME".
      See Also:
    • COLUMN_LABEL_MAX_LEN

      public static final String COLUMN_LABEL_MAX_LEN
      The column label of "MAX_LEN".
      See Also:
    • COLUMN_LABEL_DEFAULT_VALUE

      public static final String COLUMN_LABEL_DEFAULT_VALUE
      The column label of "DEFAULT_VALUE".
      See Also:
    • COLUMN_LABEL_DESCRIPTION

      public static final String COLUMN_LABEL_DESCRIPTION
      The column label of "DESCRIPTION".
      See Also:
  • Constructor Details

    • ClientInfoProperty

      public ClientInfoProperty()
  • Method Details

    • toString

      public String toString()
    • equals

      public boolean equals(Object obj)
    • hashCode

      public int hashCode()
    • getName

      public String getName()
    • setName

      public void setName(String name)
    • getMaxLen

      public Integer getMaxLen()
    • setMaxLen

      public void setMaxLen(Integer maxLen)
    • getDefaultValue

      public String getDefaultValue()
    • setDefaultValue

      public void setDefaultValue(String defaultValue)
    • getDescription

      public String getDescription()
    • setDescription

      public void setDescription(String description)
    • getUnmappedValues

      public Map<String,Object> getUnmappedValues()
      Description copied from interface: MetadataType
      Returns a map of unmapped values.
      Specified by:
      getUnmappedValues in interface MetadataType
      Returns:
      a map of unmapped values.