public interface Sign
World.getSign(int)
Modifier and Type | Method and Description |
---|---|
void |
clearText()
Clears the text on this sign.
|
long |
getCreationDate() |
int |
getID()
Gets the global, unique ID of this sign (or more precisely, of the text on this sign).
|
int |
getLineColor(int line)
Gets the color of a certain line, as RGB hex int.
|
java.lang.String |
getLineText(int line)
Gets the content of a certain line.
|
int |
getNumLines()
Gets the total amount of text lines on this sign.
|
int |
getPlayerDbID()
Gets the database id of the player who set the text on the sign.
|
java.lang.String |
getRawText()
Gets the raw text of the sign, i.e. the text with color codes.
|
java.lang.String |
getText()
Gets the text of this sign.
|
void |
setLine(int line,
int color,
java.lang.String text)
Changes the text of a certain line.
|
void |
setLine(int line,
java.lang.String text)
Changes the text of a certain line (using default black color 0x000000).
|
void |
setText(java.lang.String text)
Sets the text of this sign.
|
int getID()
java.lang.String getText()
getRawText()
.java.lang.String getRawText()
void setText(java.lang.String text)
\n
.getNumLines()
.text
- the text you want to set.void clearText()
void setLine(int line, java.lang.String text)
line
- the line you want to change (0 for the first line, 1 for the 2nd line etc).text
- the text you want to set for this line. Provide an empty string to clear
the line.void setLine(int line, int color, java.lang.String text)
line
- the line you want to change (0 for the first line, 1 for the 2nd line etc).color
- the RGB color of the line (format: 0xRRGGBB, e.g. 0x000000 for black,
0xFF0000 for red, 0xFFFFFF for white etc).text
- the text you want to set for this line. Provide an empty string to clear
the line.int getNumLines()
java.lang.String getLineText(int line)
line
- the line of the text. For example, to get the first line, provide 0,
to get the second line, provide 1 etc.int getLineColor(int line)
line
- the line you want to get the color from.int getPlayerDbID()
long getCreationDate()