public static enum SSD1306.Size extends Enum<SSD1306.Size>
Enum Constant and Description |
---|
SSD1306_128_32 |
SSD1306_128_64 |
SSD1306_96_16 |
Modifier and Type | Method and Description |
---|---|
static SSD1306.Size |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SSD1306.Size[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SSD1306.Size SSD1306_128_64
public static final SSD1306.Size SSD1306_128_32
public static final SSD1306.Size SSD1306_96_16
public static SSD1306.Size[] values()
for (SSD1306.Size c : SSD1306.Size.values()) System.out.println(c);
public static SSD1306.Size valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2017. All rights reserved.