public enum ExternalResourceType extends Enum<ExternalResourceType>
| Enum Constant and Description |
|---|
BINARY |
CSS |
FILE_EMBED |
FONT |
IMAGE_RASTER |
PDF |
SVG_BINARY |
XML_SVG |
XML_XHTML |
| Modifier and Type | Method and Description |
|---|---|
static ExternalResourceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExternalResourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExternalResourceType FONT
public static final ExternalResourceType FILE_EMBED
public static final ExternalResourceType CSS
public static final ExternalResourceType IMAGE_RASTER
public static final ExternalResourceType XML_XHTML
public static final ExternalResourceType XML_SVG
public static final ExternalResourceType BINARY
public static final ExternalResourceType PDF
public static final ExternalResourceType SVG_BINARY
public static ExternalResourceType[] values()
for (ExternalResourceType c : ExternalResourceType.values()) System.out.println(c);
public static ExternalResourceType 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 © 2004–2025. All rights reserved.