Klasse OptionSupport

java.lang.Object
org.apache.torque.map.OptionSupport
Alle implementierten Schnittstellen:
Serializable
Bekannte direkte Unterklassen:
ColumnMap, DatabaseMap, TableMap

public abstract class OptionSupport extends Object implements Serializable
OptionSupport provides the basic methods for the management of options within the database schema model.
Version:
$Id: ColumnMap.java 1484252 2013-05-19 09:58:00Z tfischer $
Autor:
Thomas Vandahl
Siehe auch:
  • Konstruktordetails

    • OptionSupport

      public OptionSupport()
  • Methodendetails

    • getOptions

      public Map<String,String> getOptions()
      Returns an unmodifiable map of all options.
      Gibt zurück:
      A map containing all options, not null.
    • setOption

      public void setOption(String key, String value)
      Sets an option.
      Parameter:
      key - the key of the option
      value - the value of the option.
    • getOption

      public String getOption(String key)
      Returns the value of an option.
      Parameter:
      key - the key of the option.
      Gibt zurück:
      the value of the option, or null if not set.
    • clearOptions

      public void clearOptions()
      Clears all options.