public interface MsgBuilder
MsgBuilder.
The interface MsgBuilder is used to build a Msg with Method Chaining pattern.| Modifier and Type | Method and Description |
|---|---|
Msg |
build()
build.
|
MsgBuilder |
removeAll()
removeAll
|
MsgBuilder |
set(int aKey,
boolean... aBooleans)
set.
|
MsgBuilder |
set(int aKey,
Boolean... aBooleans)
set.
|
MsgBuilder |
set(int aKey,
boolean aBoolean)
set.
|
MsgBuilder |
set(int aKey,
Boolean aBoolean)
set.
|
MsgBuilder |
set(int aKey,
Boolean aBoolean,
boolean optimizeLength)
set.
|
MsgBuilder |
set(int aKey,
byte... aBytes)
set.
|
MsgBuilder |
set(int aKey,
Byte... aBytes)
set.
|
MsgBuilder |
set(int aKey,
byte aByte)
set.
|
MsgBuilder |
set(int aKey,
Byte aByte)
set.
|
MsgBuilder |
set(int aKey,
Byte aByte,
boolean optimizeLength)
set.
|
MsgBuilder |
set(int aKey,
double... aDoubles)
set.
|
MsgBuilder |
set(int aKey,
Double... aDoubles)
set.
|
MsgBuilder |
set(int aKey,
double aDouble)
set.
|
MsgBuilder |
set(int aKey,
Double aDouble)
set.
|
MsgBuilder |
set(int aKey,
double aDouble,
boolean optimizeLength)
set.
|
MsgBuilder |
set(int aKey,
Double aDouble,
boolean optimizeLength)
set.
|
MsgBuilder |
set(int aKey,
double aDouble,
int aScale)
set.
|
MsgBuilder |
set(int aKey,
Double aDouble,
int aScale)
set.
|
MsgBuilder |
set(int aKey,
Double aDouble,
int aScale,
boolean optimizeLength)
set.
|
MsgBuilder |
set(int aKey,
float... aFloats)
set.
|
MsgBuilder |
set(int aKey,
Float... aFloats)
set.
|
MsgBuilder |
set(int aKey,
float aFloat)
set.
|
MsgBuilder |
set(int aKey,
Float aFloat)
set.
|
MsgBuilder |
set(int aKey,
Float aFloat,
boolean optimizeLength)
set.
|
MsgBuilder |
set(int aKey,
int... aInts)
set.
|
MsgBuilder |
set(int aKey,
int aInt)
set.
|
MsgBuilder |
set(int aKey,
int aInt,
boolean optimizeLength)
set.
|
MsgBuilder |
set(int aKey,
Integer... aInts)
set.
|
MsgBuilder |
set(int aKey,
Integer aInt)
set.
|
MsgBuilder |
set(int aKey,
Integer aInt,
boolean optimizeLength)
set.
|
MsgBuilder |
set(int aKey,
long... aLongs)
set.
|
MsgBuilder |
set(int aKey,
Long... aLongs)
set.
|
MsgBuilder |
set(int aKey,
long aLong)
set.
|
MsgBuilder |
set(int aKey,
Long aLong)
set.
|
MsgBuilder |
set(int aKey,
long aLong,
boolean optimizeLength)
set.
|
MsgBuilder |
set(int aKey,
Long aLong,
boolean optimizeLength)
set.
|
MsgBuilder |
set(int aKey,
Msg... aMsgs)
set.
|
MsgBuilder |
set(int aKey,
Msg aMsg)
set.
|
MsgBuilder |
set(int aKey,
Null aNull)
set.
|
MsgBuilder |
set(int aKey,
Object anObject)
set.
|
MsgBuilder |
set(int aKey,
Object aObject,
boolean optimizeLength)
set.
|
MsgBuilder |
set(int aKey,
short... aShorts)
set.
|
MsgBuilder |
set(int aKey,
Short... aShorts)
set.
|
MsgBuilder |
set(int aKey,
short aShort)
set.
|
MsgBuilder |
set(int aKey,
Short aShort)
set.
|
MsgBuilder |
set(int aKey,
short aShort,
boolean optimizeLength)
set.
|
MsgBuilder |
set(int aKey,
Short aShort,
boolean optimizeLength)
set.
|
MsgBuilder |
set(int aKey,
String... aStrings)
set.
|
MsgBuilder |
set(int aKey,
String aString)
set.
|
MsgBuilder |
set(int aKey,
String[] aStrings,
boolean forceAsciiEncoding)
set.
|
MsgBuilder |
set(int aKey,
String aString,
boolean forceAsciiEncoding)
set.
|
MsgBuilder set(int aKey, Null aNull)
set.
aKey - an unsigned int.aNull - a Null object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, Object anObject)
set.
aKey - an unsigned int.anObject - a Object object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, Object aObject, boolean optimizeLength)
aKey - an unsigned int.aObject - a Object object to set in the field of aKey (a reference, not a copy).optimizeLength - an boolean to force/unforce optimization of length notably of null object or when the value of the object permits it (the
default is true).MsgBuilder set(int aKey, boolean aBoolean)
set.
aKey - an unsigned int.aBoolean - a boolean to set in the field of aKey.MsgBuilder set(int aKey, Boolean aBoolean)
set.
aKey - an unsigned int.aBoolean - a Boolean object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, Boolean aBoolean, boolean optimizeLength)
set.
aKey - an unsigned int.aBoolean - a Boolean object to set in the field of aKey (a reference, not a copy).optimizeLength - a boolean to force/unforce optimization of length notably of null object or when the value of the object permits it (the
default is true).MsgBuilder set(int aKey, byte aByte)
set.
aKey - an unsigned int.aByte - a byte to set in the field of aKey.MsgBuilder set(int aKey, Byte aByte)
set.
aKey - an unsigned int.aByte - a Byte object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, Byte aByte, boolean optimizeLength)
set.
aKey - an unsigned int.aByte - a byte.optimizeLength - a boolean to force/unforce optimization of length notably of null object or when the value of the object permits it (the
default is true).MsgBuilder set(int aKey, short aShort)
set.
aKey - an unsigned int.aShort - a short to set in the field of aKey.MsgBuilder set(int aKey, short aShort, boolean optimizeLength)
set.
aKey - an unsigned int.aShort - a short to set in the field of aKey.optimizeLength - a boolean to force/unforce optimization of length notably of null object or when the value of the object permits it (the
default is true).MsgBuilder set(int aKey, Short aShort)
set.
aKey - an unsigned int.aShort - a Short object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, Short aShort, boolean optimizeLength)
set.
aKey - an unsigned int.aShort - a Short object to set in the field of aKey (a reference, not a copy).optimizeLength - a boolean to force/unforce optimization of length notably of null object or when the value of the object permits it (the
default is true).MsgBuilder set(int aKey, int aInt)
set.
aKey - an unsigned int.aInt - an int to set in the field of aKey.MsgBuilder set(int aKey, int aInt, boolean optimizeLength)
set.
aKey - an unsigned int.aInt - an int to set in the field of aKey.optimizeLength - a boolean to force/unforce optimization of length notably of null object or when the value of the object permits it (the
default is true).MsgBuilder set(int aKey, Integer aInt)
set.
aKey - an unsigned int.aInt - a Integer object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, Integer aInt, boolean optimizeLength)
set.
aKey - an unsigned int.aInt - the Integer object to set in the field of aKey (a reference, not a copy).optimizeLength - a boolean to force/unforce optimization of length notably of null object or when the value of the object permits it (the
default is true).MsgBuilder set(int aKey, long aLong)
set.
aKey - an unsigned int.aLong - a long to set in the field of aKey.MsgBuilder set(int aKey, long aLong, boolean optimizeLength)
set.
aKey - an unsigned int.aLong - a long to set in the field of aKey.optimizeLength - a boolean to force/unforce optimization of length notably of null object or when the value of the object permits it (the
default is true).MsgBuilder set(int aKey, Long aLong)
set.
aKey - an unsigned int.aLong - a Long object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, Long aLong, boolean optimizeLength)
set.
aKey - an unsigned int.aLong - a Long object to set in the field of aKey (a reference, not a copy).optimizeLength - a boolean to force/unforce optimization of length notably of null object or when the value of the object permits it (the
default is true).MsgBuilder set(int aKey, float aFloat)
set.
aKey - an unsigned int.aFloat - a float to set in the field of aKey.MsgBuilder set(int aKey, Float aFloat)
set.
aKey - an unsigned int.aFloat - a Float object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, Float aFloat, boolean optimizeLength)
set.
aKey - an unsigned int.aFloat - a Float object to set in the field of aKey (a reference, not a copy).optimizeLength - a boolean to force/unforce optimization of length notably of null object or when the value of the object permits it (the
default is true).MsgBuilder set(int aKey, double aDouble)
set.
aKey - an unsigned int.aDouble - a double to set in the field of aKey.MsgBuilder set(int aKey, double aDouble, boolean optimizeLength)
set.
aKey - an unsigned int.aDouble - a short to set in the field of aKey.optimizeLength - a boolean to force/unforce optimization of length notably of null object or when the value of the object permits it (the
default is true).MsgBuilder set(int aKey, Double aDouble)
set.
aKey - an unsigned int.aDouble - a Double object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, Double aDouble, boolean optimizeLength)
set.
aKey - an unsigned int.aDouble - a Double object to set in the field of aKey (a reference, not a copy).optimizeLength - a boolean to force/unforce optimization of length notably of null object or when the value of the object permits it (the
default is true).MsgBuilder set(int aKey, double aDouble, int aScale)
set.
aKey - an unsigned int.aDouble - a double to set in the field of aKey.aScale - a int which represents the number after the dot if positive and before the dot if negative.MsgBuilder set(int aKey, Double aDouble, int aScale)
set.
aKey - an unsigned int.aDouble - a Double object to set in the field of aKey (a reference, not a copy).aScale - a int which represents the number after the dot if positive and before the dot if negative.MsgBuilder set(int aKey, Double aDouble, int aScale, boolean optimizeLength)
set.
aKey - an unsigned int.aDouble - a Double object to set in the field of aKey (a reference, not a copy).aScale - a int which represents the number after the dot if positive and before the dot if negative.optimizeLength - a boolean to force/unforce optimization of length notably of null object or when the value of the object permits it (the
default is true).MsgBuilder set(int aKey, String aString)
set.
aKey - an unsigned int.aString - a String object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, String aString, boolean forceAsciiEncoding)
set.
aKey - an unsigned int.aString - a String object to set in the field of aKey (a reference, not a copy).forceAsciiEncoding - boolean to consider the aString is encoded in ASCII (default is false, UTF8 is used).MsgBuilder set(int aKey, Msg aMsg)
set.
aKey - an unsigned int.aMsg - a Msg object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, boolean... aBooleans)
set.
aKey - an unsigned int.aBooleans - a boolean... object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, Boolean... aBooleans)
set.
aKey - an unsigned int.aBooleans - a Boolean[] object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, byte... aBytes)
set.
aKey - an unsigned int.aBytes - a byte... object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, Byte... aBytes)
set.
aKey - an unsigned int.aBytes - a Byte... object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, short... aShorts)
set.
aKey - an unsigned int.aShorts - a short... object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, Short... aShorts)
set.
aKey - an unsigned int.aShorts - a Short... object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, int... aInts)
set.
aKey - an unsigned int.aInts - a int... object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, Integer... aInts)
set.
aKey - an unsigned int.aInts - a Integer... object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, long... aLongs)
set.
aKey - an unsigned int.aLongs - a long... object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, Long... aLongs)
set.
aKey - an unsigned int.aLongs - a Long... object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, float... aFloats)
set.
aKey - an unsigned int.aFloats - a float... object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, Float... aFloats)
set.
aKey - an unsigned int.aFloats - a Float... object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, double... aDoubles)
set.
aKey - an unsigned int.aDoubles - a double... object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, Double... aDoubles)
set.
aKey - an unsigned int.aDoubles - a Double... object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, String... aStrings)
set.
aKey - an unsigned int.aStrings - a String... object to set in the field of aKey (a reference, not a copy).MsgBuilder set(int aKey, String[] aStrings, boolean forceAsciiEncoding)
set.
aKey - an unsigned int.aStrings - a String... object to set in the field of aKey (a reference, not a copy).forceAsciiEncoding - boolean to consider the aString is encoded in ASCII (default is false, UTF8 is used).MsgBuilder set(int aKey, Msg... aMsgs)
set.
aKey - an unsigned int.aMsgs - a Msg... object to set in the field of aKey (a reference, not a copy).MsgBuilder removeAll()
removeAll
.Msg build()
build.
Copyright © 2012–2014 hermod. All rights reserved.