Class EmptyCheckParameters

java.lang.Object
com.e1c.g5.v8.dt.internal.check.settings.EmptyCheckParameters
All Implemented Interfaces:
ICheckParameters

public class EmptyCheckParameters extends Object implements ICheckParameters
ICheckParameters implementation for empty parameters set.
  • Field Details

    • INSTANCE

      public static final ICheckParameters INSTANCE
      Empty parameters set.
  • Method Details

    • getInt

      public int getInt(String name)
      Description copied from interface: ICheckParameters
      Returns the int value to which the specified key is mapped.
      Specified by:
      getInt in interface ICheckParameters
      Parameters:
      name - the parameter name, not null
      Returns:
      parameter value, not null
    • getLong

      public long getLong(String name)
      Description copied from interface: ICheckParameters
      Returns the long value to which the specified key is mapped.
      Specified by:
      getLong in interface ICheckParameters
      Parameters:
      name - the parameter name, not null
      Returns:
      parameter value, not null
    • getBoolean

      public boolean getBoolean(String name)
      Description copied from interface: ICheckParameters
      Returns the boolean value to which the specified key is mapped.
      Specified by:
      getBoolean in interface ICheckParameters
      Parameters:
      name - the parameter name, not null
      Returns:
      parameter value, not null
    • getDouble

      public double getDouble(String name)
      Description copied from interface: ICheckParameters
      Returns the double value to which the specified key is mapped.
      Specified by:
      getDouble in interface ICheckParameters
      Parameters:
      name - the parameter name, not null
      Returns:
      parameter value, not null
    • getString

      public String getString(String name)
      Description copied from interface: ICheckParameters
      Returns the string value to which the specified key is mapped.
      Specified by:
      getString in interface ICheckParameters
      Parameters:
      name - the parameter name, not null
      Returns:
      parameter value, not null
    • keySet

      public Set<String> keySet()
      Description copied from interface: ICheckParameters
      Returns a Set view of the contained parameters names.
      Specified by:
      keySet in interface ICheckParameters
      Returns:
      parameters names, not null
    • toString

      public String toString()
      Overrides:
      toString in class Object