java.io.Serializable, java.lang.Comparable<HamletSpec.Media>public static enum HamletSpec.Media extends java.lang.Enum<HamletSpec.Media>
| Enum Constant | Description |
|---|---|
all |
suitable all media
|
aural |
aural
|
braille |
braille
|
handheld |
mobile device
|
print |
print media
|
projection |
projection
|
screen |
computer screen
|
tty |
teletype/terminal
|
tv |
television
|
| Modifier and Type | Method | Description |
|---|---|---|
static HamletSpec.Media |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static HamletSpec.Media[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HamletSpec.Media screen
public static final HamletSpec.Media tty
public static final HamletSpec.Media tv
public static final HamletSpec.Media projection
public static final HamletSpec.Media handheld
public static final HamletSpec.Media print
public static final HamletSpec.Media braille
public static final HamletSpec.Media aural
public static final HamletSpec.Media all
public static HamletSpec.Media[] values()
for (HamletSpec.Media c : HamletSpec.Media.values()) System.out.println(c);
public static HamletSpec.Media valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2008–2025 Apache Software Foundation. All rights reserved.