public static enum HamletSpec.Media extends Enum<HamletSpec.Media>
| Enum Constant and Description | 
|---|
| allsuitable all media | 
| auralaural | 
| braillebraille | 
| handheldmobile device | 
| printprint media | 
| projectionprojection | 
| screencomputer screen | 
| ttyteletype/terminal | 
| tvtelevision | 
| Modifier and Type | Method and Description | 
|---|---|
| static HamletSpec.Media | valueOf(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(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 © 2008–2023 Apache Software Foundation. All rights reserved.