public enum Minifier extends Enum<Minifier>
| Modifier and Type | Method and Description |
|---|---|
boolean |
accepts(String file) |
static Minifier |
forFileName(String filename) |
abstract void |
minify(InputStream inputStream,
OutputStream outputStream,
Charset charset,
String customHeader) |
static Minifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Minifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static Minifier[] values()
for (Minifier c : Minifier.values()) System.out.println(c);
public static Minifier 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 boolean accepts(String file)
public abstract void minify(InputStream inputStream, OutputStream outputStream, Charset charset, String customHeader)
Copyright © 2015. All rights reserved.