- All Implemented Interfaces:
Serializable
,Comparable<LcdDisplayComponent.Symbol>
,Constable
- Enclosing class:
- LcdDisplayComponent
Enumeration with most important and used symbols. Resolves ASCII character to the LCD Display characters table
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionstatic int
getByChar
(char c) Method to search a the corresponding byte to an ASCII sign.static LcdDisplayComponent.Symbol
Returns the enum constant of this class with the specified name.static LcdDisplayComponent.Symbol[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ZERO
-
ONE
-
TWO
-
THREE
-
FOUR
-
FIVE
-
SIX
-
SEVEN
-
EIGHT
-
NINE
-
A
-
B
-
C
-
D
-
E
-
F
-
G
-
H
-
I
-
J
-
K
-
L
-
M
-
N
-
O
-
P
-
Q
-
R
-
S
-
T
-
U
-
V
-
W
-
X
-
Y
-
Z
-
a
-
b
-
c
-
d
-
e
-
f
-
g
-
h
-
i
-
j
-
k
-
l
-
m
-
n
-
o
-
p
-
q
-
r
-
s
-
t
-
u
-
v
-
w
-
x
-
y
-
z
-
EXCLAMATION_MARK
-
DOUBLE_QUOTE
-
NUMBER_SIGN
-
DOLLAR
-
PERCENT
-
AMPERSAND
-
QUOTE_SINGLE
-
PARENTHESIS_LEFT
-
PARENTHESIS_RIGHT
-
ASTERISK
-
PLUS
-
COMMA
-
HYPHEN
-
PERIOD
-
SLASH
-
COLON
-
SEMICOLON
-
LESS
-
EQUAL
-
GREATER
-
QUESTION
-
AT
-
BRACKET_LEFT
-
YEN
-
BRACKET_RIGHT
-
CARET
-
UNDERSCORE
-
GRAV
-
BRACE_LEFT
-
BAR
-
BRACE_RIGHT
-
ARROW_RIGHT
-
ARROW_LEFT
-
SQUARE
-
TOP_LEFT_CORNER
-
BOTTOM_RIGHT_CORNER
-
SMALL_BACKSLASH
-
KATAKANA_MIDPOINT
-
SMALL_ALPHA
-
LATIN_SMALL_A_WITH_DIAERESIS
-
BIG_BETA
-
SMALL_EPSILON
-
SMALL_MY
-
SMALL_SIGMA
-
SMALL_RHO
-
SQUARE_ROOT
-
LATIN_SMALL_O_WITH_DIAERESIS
-
BIG_THETA
-
INFINITY_SIGN
-
BIG_OMEGA
-
LATIN_SMALL_U_WITH_DIAERESIS
-
BIG_SIGMA
-
SMALL_PI
-
SHIN
-
TSHE
-
DIVISION
-
SPACE
-
BLACKBOX
-
OWN_CHARACTER_1
-
OWN_CHARACTER_2
-
OWN_CHARACTER_3
-
OWN_CHARACTER_4
-
OWN_CHARACTER_5
-
OWN_CHARACTER_6
-
OWN_CHARACTER_7
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getByChar
public static int getByChar(char c) Method to search a the corresponding byte to an ASCII sign. Returns a ? if a symbol is not found- Parameters:
c
- ASCII Symbol- Returns:
- Byte needed to display the Symbol on the LCD Display
-