Class SimpleString
java.lang.Object
org.apache.activemq.artemis.api.core.SimpleString
- All Implemented Interfaces:
Serializable
,CharSequence
,Comparable<SimpleString>
public final class SimpleString
extends Object
implements CharSequence, Serializable, Comparable<SimpleString>
A simple String class that can store all characters, and stores as simple
byte[]
, this
minimises expensive copying between String objects.
This object is used heavily throughout ActiveMQ Artemis for performance reasons.
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
static final class
-
Constructor Summary
ConstructorDescriptionSimpleString
(byte[] data) Deprecated, for removal: This API element is subject to removal in a future version.SimpleString
(char c) Deprecated, for removal: This API element is subject to removal in a future version.Useof(char)
instead.SimpleString
(String string) Deprecated, for removal: This API element is subject to removal in a future version.Useof(String)
instead. -
Method Summary
Modifier and TypeMethodDescriptionchar
charAt
(int pos) int
concat
(char c) Concatenates a SimpleString and a charConcatenates a SimpleString and a Stringconcat
(SimpleString toAdd) Concatenates 2 SimpleString'sboolean
contains
(char c) checks to see if this SimpleString contains the char parameter passed inboolean
containsEitherOf
(char c, char d) boolean
equals
(io.netty.buffer.ByteBuf byteBuf, int offset, int length) boolean
void
getChars
(int srcBegin, int srcEnd, char[] dst, int dstPos) This method performs a similar function toString.getChars(int, int, char[], int)
.byte[]
getData()
returns the underlying byte array of this SimpleStringString[]
getPaths
(char separator) note the result of the first use is cached, the separator is configured on the postoffice so will be static for the duration of a server instance.int
hashCode()
boolean
isEmpty()
int
length()
static SimpleString
of
(byte[] data) creates a SimpleString from a byte arraystatic SimpleString
of
(char c) creates a SimpleString from a characterstatic SimpleString
Returns a SimpleString constructed from thestring
parameter.static SimpleString
of
(String string, SimpleString.StringSimpleStringPool pool) Returns a SimpleString constructed from thestring
parameter.static SimpleString
readNullableSimpleString
(io.netty.buffer.ByteBuf buffer) static SimpleString
readNullableSimpleString
(io.netty.buffer.ByteBuf buffer, SimpleString.ByteBufSimpleStringPool pool) static SimpleString
readSimpleString
(io.netty.buffer.ByteBuf buffer) static SimpleString
readSimpleString
(io.netty.buffer.ByteBuf buffer, int length) static SimpleString
readSimpleString
(io.netty.buffer.ByteBuf buffer, SimpleString.ByteBufSimpleStringPool pool) int
sizeof()
returns the size of this SimpleStringstatic int
returns the size of a SimpleString which could be nullstatic int
sizeofString
(SimpleString str) returns the size of a SimpleStringsplit
(char delim) Splits this SimpleString into an array of SimpleString using the char param as the delimiter.boolean
startsWith
(char other) returns true if the SimpleString parameter starts with the same char.boolean
startsWith
(SimpleString other) returns true if the SimpleString parameter starts with the same data as this one.subSeq
(int start, int end) subSequence
(int start, int end) static SimpleString
toSimpleString
(String string) Deprecated, for removal: This API element is subject to removal in a future version.Useof(String)
instead.static SimpleString
toSimpleString
(String string, SimpleString.StringSimpleStringPool pool) Deprecated, for removal: This API element is subject to removal in a future version.Useof(String, StringSimpleStringPool)
instead.toString()
static void
writeNullableSimpleString
(io.netty.buffer.ByteBuf buffer, SimpleString val) static void
writeSimpleString
(io.netty.buffer.ByteBuf buffer, SimpleString val) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.CharSequence
chars, codePoints
-
Constructor Details
-
SimpleString
Deprecated, for removal: This API element is subject to removal in a future version.Useof(String)
instead.creates a SimpleString from a conventional String- Parameters:
string
- the string to transform
-
SimpleString
Deprecated, for removal: This API element is subject to removal in a future version.Useof(byte[])
instead.creates a SimpleString from a byte array- Parameters:
data
- the byte array to use
-
SimpleString
Deprecated, for removal: This API element is subject to removal in a future version.Useof(char)
instead.creates a SimpleString from a character- Parameters:
c
- the char to use
-
-
Method Details
-
of
Returns a SimpleString constructed from thestring
parameter.If
string
isnull
, the return value will benull
too.- Parameters:
string
- String used to instantiate a SimpleString.- Returns:
- A new SimpleString
-
of
Returns a SimpleString constructed from thestring
parameter.If
string
isnull
, the return value will benull
too.- Parameters:
string
- String used to instantiate a SimpleString.pool
- The pool from which to create the SimpleString- Returns:
- A new SimpleString
-
of
creates a SimpleString from a byte array- Parameters:
data
- the byte array to use
-
of
creates a SimpleString from a character- Parameters:
c
- the char to use
-
toSimpleString
Deprecated, for removal: This API element is subject to removal in a future version.Useof(String)
instead.Returns a SimpleString constructed from thestring
parameter.If
string
isnull
, the return value will benull
too.- Parameters:
string
- String used to instantiate a SimpleString.- Returns:
- A new SimpleString
-
toSimpleString
@Deprecated(forRemoval=true) public static SimpleString toSimpleString(String string, SimpleString.StringSimpleStringPool pool) Deprecated, for removal: This API element is subject to removal in a future version.Useof(String, StringSimpleStringPool)
instead.Returns a SimpleString constructed from thestring
parameter.If
string
isnull
, the return value will benull
too.- Parameters:
string
- String used to instantiate a SimpleString.pool
- The pool from which to create the SimpleString- Returns:
- A new SimpleString
-
isEmpty
public boolean isEmpty()- Specified by:
isEmpty
in interfaceCharSequence
-
length
public int length()- Specified by:
length
in interfaceCharSequence
-
charAt
public char charAt(int pos) - Specified by:
charAt
in interfaceCharSequence
-
subSequence
- Specified by:
subSequence
in interfaceCharSequence
-
readNullableSimpleString
-
readNullableSimpleString
public static SimpleString readNullableSimpleString(io.netty.buffer.ByteBuf buffer, SimpleString.ByteBufSimpleStringPool pool) -
readSimpleString
-
readSimpleString
public static SimpleString readSimpleString(io.netty.buffer.ByteBuf buffer, SimpleString.ByteBufSimpleStringPool pool) -
readSimpleString
-
writeNullableSimpleString
-
writeSimpleString
-
subSeq
-
compareTo
- Specified by:
compareTo
in interfaceComparable<SimpleString>
-
getData
public byte[] getData()returns the underlying byte array of this SimpleString- Returns:
- the byte array
-
startsWith
returns true if the SimpleString parameter starts with the same data as this one. false if not.- Parameters:
other
- the SimpleString to look for- Returns:
- true if this SimpleString starts with the same data
-
startsWith
public boolean startsWith(char other) returns true if the SimpleString parameter starts with the same char. false if not.- Parameters:
other
- the char to look for- Returns:
- true if this SimpleString starts with the same data
-
toString
- Specified by:
toString
in interfaceCharSequence
- Overrides:
toString
in classObject
-
getPaths
note the result of the first use is cached, the separator is configured on the postoffice so will be static for the duration of a server instance. calling with different separator values could give invalid results- Parameters:
separator
- value from wildcardConfiguration- Returns:
- String[] reference to the split paths or the cached value if previously called
-
equals
-
equals
public boolean equals(io.netty.buffer.ByteBuf byteBuf, int offset, int length) Returnstrue
if theSimpleString
encoded content intobytes
is equals tos
,false
otherwise.It assumes that the
bytes
content is read usingreadSimpleString(ByteBuf, int)
ie starting right after the length field. -
hashCode
public int hashCode() -
split
Splits this SimpleString into an array of SimpleString using the char param as the delimiter. i.e. "a.b" would return "a" and "b" if . was the delimiter- Parameters:
delim
- The delimiter to split this SimpleString on.- Returns:
- An array of SimpleStrings
-
contains
public boolean contains(char c) checks to see if this SimpleString contains the char parameter passed in- Parameters:
c
- the char to check for- Returns:
- true if the char is found, false otherwise.
-
containsEitherOf
public boolean containsEitherOf(char c, char d) -
concat
Concatenates a SimpleString and a String- Parameters:
toAdd
- the String to concatenate with.- Returns:
- the concatenated SimpleString
-
concat
Concatenates 2 SimpleString's- Parameters:
toAdd
- the SimpleString to concatenate with.- Returns:
- the concatenated SimpleString
-
concat
Concatenates a SimpleString and a char- Parameters:
c
- the char to concate with.- Returns:
- the concatenated SimpleString
-
sizeof
public int sizeof()returns the size of this SimpleString- Returns:
- the size
-
sizeofString
returns the size of a SimpleString- Parameters:
str
- the SimpleString to check- Returns:
- the size
-
sizeofNullableString
returns the size of a SimpleString which could be null- Parameters:
str
- the SimpleString to check- Returns:
- the size
-
getChars
public void getChars(int srcBegin, int srcEnd, char[] dst, int dstPos) This method performs a similar function toString.getChars(int, int, char[], int)
. This is mainly used by the Parsers on Filters- Parameters:
srcBegin
- The srcBeginsrcEnd
- The srcEnddst
- The destination arraydstPos
- The destination position
-
of(byte[])
instead.