Package com.google.zxing.common
Class ECIStringBuilder
java.lang.Object
com.google.zxing.common.ECIStringBuilder
Class that converts a sequence of ECIs and bytes into a string
- Author:
- Alex Geller
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
append
(byte value) Appendsvalue
as a byte valuevoid
append
(char value) Appendsvalue
as a byte valuevoid
append
(int value) Append the string repesentation ofvalue
(short forappend(String.valueOf(value))
)void
Appends the characters invalue
as bytes valuesvoid
appendCharacters
(StringBuilder value) Appends the characters fromvalue
(unlike all other append methods of this class who append bytes)void
appendECI
(int value) Appends ECI value to output.boolean
isEmpty()
int
length()
Short fortoString().length()
(if possible, useisEmpty()
instead)toString()
-
Constructor Details
-
ECIStringBuilder
public ECIStringBuilder() -
ECIStringBuilder
public ECIStringBuilder(int initialCapacity)
-
-
Method Details
-
append
public void append(char value) Appendsvalue
as a byte value- Parameters:
value
- character whose lowest byte is to be appended
-
append
public void append(byte value) Appendsvalue
as a byte value- Parameters:
value
- byte to append
-
append
Appends the characters invalue
as bytes values- Parameters:
value
- string to append
-
append
public void append(int value) Append the string repesentation ofvalue
(short forappend(String.valueOf(value))
)- Parameters:
value
- int to append as a string
-
appendECI
Appends ECI value to output.- Parameters:
value
- ECI value to append, as an int- Throws:
FormatException
- on invalid ECI value
-
appendCharacters
Appends the characters fromvalue
(unlike all other append methods of this class who append bytes)- Parameters:
value
- characters to append
-
length
public int length()Short fortoString().length()
(if possible, useisEmpty()
instead)- Returns:
- length of string representation in characters
-
isEmpty
public boolean isEmpty()- Returns:
- true iff nothing has been appended
-
toString
-