public enum CDN extends Enum<CDN> implements Provider
Modifier and Type | Method and Description |
---|---|
org.apache.wicket.markup.html.IHeaderContributor |
getHeaderContributor(VersionDescriptor versionDescriptor,
boolean production) |
protected abstract URL |
render(Library lib,
Version v,
boolean production) |
static CDN |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CDN[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CDN[] ANY
public static CDN[] values()
for (CDN c : CDN.values()) System.out.println(c);
public static CDN 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 nullpublic org.apache.wicket.markup.html.IHeaderContributor getHeaderContributor(VersionDescriptor versionDescriptor, boolean production)
getHeaderContributor
in interface Provider
production
- if true, tries to use minimized version of script if availableCopyright © 2015. All rights reserved.