Class PropertySet
java.lang.Object
com.swiftmq.impl.streams.comp.message.PropertySet
Facade to wrap a Set of Properties of a javax.jms.Message
- Author:
- IIT Software GmbH, Muenster/Germany, (c) 2016, All Rights Reserved
-
Method Summary
Modifier and TypeMethodDescriptionReturns a new PropertySet that contains all Properties which name ends with the suffix.voidforEach(ForEachPropertyCallback callback) Invokes the callback for each Property of this PropertySetnotEndsWith(String suffix) Returns a new PropertySet that contains all Properties which name does NOT end with the suffix.Returns a new PropertySet that contains all Properties which name is not equals the prefix.notStartsWith(String prefix) Returns a new PropertySet that contains all Properties which name do NOT starts with the prefix.Returns a new PropertySet that contains all Properties which name matches the regular expression.startsWith(String prefix) Returns a new PropertySet that contains all Properties which name starts with the prefix.
-
Method Details
-
notEquals
Returns a new PropertySet that contains all Properties which name is not equals the prefix.- Parameters:
prefix- Prefix- Returns:
- PropertySet
-
startsWith
Returns a new PropertySet that contains all Properties which name starts with the prefix.- Parameters:
prefix- Prefix- Returns:
- PropertySet
-
notStartsWith
Returns a new PropertySet that contains all Properties which name do NOT starts with the prefix.- Parameters:
prefix- Prefix- Returns:
- PropertySet
-
endsWith
Returns a new PropertySet that contains all Properties which name ends with the suffix.- Parameters:
suffix- Suffix- Returns:
- PropertySet
-
notEndsWith
Returns a new PropertySet that contains all Properties which name does NOT end with the suffix.- Parameters:
suffix- Suffix- Returns:
- PropertySet
-
select
Returns a new PropertySet that contains all Properties which name matches the regular expression.- Parameters:
regex- Regular Expression- Returns:
- PropertySet
-
forEach
Invokes the callback for each Property of this PropertySet- Parameters:
callback- Callback
-