Class AvailableValues

    • Constructor Summary

      Constructors 
      Constructor Description
      AvailableValues​(java.lang.String valueType, java.util.Collection<?> values)  
      AvailableValues​(java.lang.String valueType, java.util.Map<?,​?> map)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.List<java.lang.String> getValues()
      The values, as strings, in sorted order.
      java.lang.String getValueType()
      The type of value, i.e., "component types" or "service ids".
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • AvailableValues

        public AvailableValues​(java.lang.String valueType,
                               java.util.Collection<?> values)
        Parameters:
        valueType - a word or phrase that describes what the values are such as "component types" or "service ids"
        values - a set of objects defining the values; the values will be converted to strings and sorted into ascending order
      • AvailableValues

        public AvailableValues​(java.lang.String valueType,
                               java.util.Map<?,​?> map)
    • Method Detail

      • getValueType

        public java.lang.String getValueType()
        The type of value, i.e., "component types" or "service ids".
      • getValues

        public java.util.List<java.lang.String> getValues()
        The values, as strings, in sorted order.
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object