public class PropertyImpl extends RelationImpl<String,String> implements Property
_key, _value| Constructor and Description |
|---|
PropertyImpl()
Use the builder methods or the bean attributes to set the key and the
value.
|
PropertyImpl(String aTupel)
Initializes the
PropertyImpl with the given values. |
PropertyImpl(String aTupel,
char aTupelDelimeter)
Initializes the
PropertyImpl with the given values. |
PropertyImpl(String aKey,
String aValue)
Initializes the
PropertyImpl with the given values. |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
Property |
withKey(String aKey) |
Property |
withValue(String aValue) |
getKey, getValue, setKey, setValuepublic PropertyImpl()
public PropertyImpl(String aKey, String aValue)
PropertyImpl with the given values.aKey - The according key to set.aValue - The according value to set.public PropertyImpl(String aTupel)
PropertyImpl with the given values.aTupel - A tupel is a key and a value with the assignment operator
"=" inbetween, e.g. "a=5" (the key would be a, the value would be
5).public PropertyImpl(String aTupel, char aTupelDelimeter)
PropertyImpl with the given values.aTupel - A tupel is a key and a value with the assignment operator
"=" inbetween, e.g. "a=5" (the key would be a, the value would be
5).aTupelDelimeter - The delimeter to be used for dividing the
key/value pair.Copyright © 2016. All rights reserved.