public static enum SassCompiler.OutputStyle extends Enum<SassCompiler.OutputStyle>
| Enum Constant and Description |
|---|
compact |
compressed |
expanded |
nested |
| Modifier and Type | Method and Description |
|---|---|
static SassCompiler.OutputStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SassCompiler.OutputStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SassCompiler.OutputStyle nested
public static final SassCompiler.OutputStyle expanded
public static final SassCompiler.OutputStyle compact
public static final SassCompiler.OutputStyle compressed
public static SassCompiler.OutputStyle[] values()
for (SassCompiler.OutputStyle c : SassCompiler.OutputStyle.values()) System.out.println(c);
public static SassCompiler.OutputStyle 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 © 2015. All rights reserved.