Class CleanUpOptionsCore

java.lang.Object
org.eclipse.jdt.core.manipulation.CleanUpOptionsCore
Direct Known Subclasses:
CleanUpOptions

@Deprecated public class CleanUpOptionsCore extends Object
Deprecated.
Please use CleanUpOptions in the future This class is not intended to be subclassed by clients.
Allows to set and retrieve clean up settings for given options keys.
Since:
1.12
  • Field Details

  • Constructor Details

    • CleanUpOptionsCore

      public CleanUpOptionsCore(Map<String,String> options)
      Deprecated.
      Creates a new CleanUpOptions instance with the given options.
      Parameters:
      options - map that maps clean ups keys (String) to a non-null string value
    • CleanUpOptionsCore

      public CleanUpOptionsCore()
      Deprecated.
      Creates a new instance.
  • Method Details

    • isEnabled

      public boolean isEnabled(String key)
      Deprecated.
      Tells whether the option with the given key is enabled.
      Parameters:
      key - the name of the option
      Returns:
      true if enabled, false if not enabled or unknown key
      Throws:
      IllegalArgumentException - if the key is null
      See Also:
      • CleanUpConstants
    • getValue

      public String getValue(String key)
      Deprecated.
      Returns the value for the given key.
      Parameters:
      key - the key of the value
      Returns:
      the value associated with the key
      Throws:
      IllegalArgumentException - if the key is null or unknown
    • setOption

      public void setOption(String key, String value)
      Deprecated.
      Sets the option for the given key to the given value.
      Parameters:
      key - the name of the option to set
      value - the value of the option
      Throws:
      IllegalArgumentException - if the key is null
      See Also:
    • getKeys

      public Set<String> getKeys()
      Deprecated.
      Returns an unmodifiable set of all known keys.
      Returns:
      an unmodifiable set of all keys