Class IntegerValuesSettings

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String TAG  
    • Constructor Summary

      Constructors 
      Constructor Description
      IntegerValuesSettings​(java.lang.String name, java.math.BigInteger min, java.math.BigInteger max)  
    • Field Detail

      • TAG

        public static final java.lang.String TAG
    • Constructor Detail

      • IntegerValuesSettings

        public IntegerValuesSettings​(java.lang.String name,
                                     java.math.BigInteger min,
                                     java.math.BigInteger max)
    • Method Detail

      • getName

        public java.lang.String getName()
        Description copied from class: AbstractSettings
        Returns the name of the settings (to be overridden in subclasses).
        Overrides:
        getName in class AbstractSettings
        Returns:
        the settings name.
      • getMin

        public java.math.BigInteger getMin()
      • getMax

        public java.math.BigInteger getMax()
      • getPossibleValues

        public java.util.Set<java.math.BigInteger> getPossibleValues()
      • getIncludeValues

        public java.util.Set<java.math.BigInteger> getIncludeValues()
      • getExcludeValues

        public java.util.Set<java.math.BigInteger> getExcludeValues()
      • getValues

        public java.util.Set<java.math.BigInteger> getValues()
      • get

        public java.util.Collection<AbstractSettings> get​(java.lang.String tag)
        Description copied from class: AbstractSettings
        Default implementation (to be overridden in subclasses).
        Overrides:
        get in class AbstractSettings
        Parameters:
        tag - the tag of the sections to be returned.
        Returns:
        Sections that correspond to the specified section tag.
      • add

        public void add​(AbstractSettings section)
        Description copied from class: AbstractSettings
        Default implementation (to be overridden in subclasses).
        Overrides:
        add in class AbstractSettings
        Parameters:
        section - the settings's section to be added.