Class KeyValuePairSet

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Iterable<KeyValuePair>, java.util.Collection<KeyValuePair>, java.util.Set<KeyValuePair>

    public class KeyValuePairSet
    extends KeyValuePairBag
    implements java.util.Set<KeyValuePair>, java.io.Serializable

    A Set of KeyValuePair instances.

    See Also:
    Serialized Form

    In the adapter configuration file this class is aliased as key-value-pair-set which is the preferred alternative to the fully qualified classname when building your configuration.

    • Constructor Detail

      • KeyValuePairSet

        public KeyValuePairSet()

        Creates a new instance.

      • KeyValuePairSet

        public KeyValuePairSet​(java.util.Collection<KeyValuePair> pairs)
      • KeyValuePairSet

        public KeyValuePairSet​(java.util.Properties properties)
      • KeyValuePairSet

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

      • removeAll

        public boolean removeAll​(java.util.Collection<?> c)

        The behaviour of this method is the same as AbstractSet.removeAll(Collection)

        Specified by:
        removeAll in interface java.util.Collection<KeyValuePair>
        Specified by:
        removeAll in interface java.util.Set<KeyValuePair>
        Overrides:
        removeAll in class java.util.AbstractCollection<KeyValuePair>
        See Also:
        AbstractSet.removeAll(Collection)