Package lumis.util.sass
Enum SassCompiler.CompilerOptions.OutputStyle
- java.lang.Object
-
- java.lang.Enum<SassCompiler.CompilerOptions.OutputStyle>
-
- lumis.util.sass.SassCompiler.CompilerOptions.OutputStyle
-
- All Implemented Interfaces:
Serializable
,Comparable<SassCompiler.CompilerOptions.OutputStyle>
- Enclosing class:
- SassCompiler.CompilerOptions
public static enum SassCompiler.CompilerOptions.OutputStyle extends Enum<SassCompiler.CompilerOptions.OutputStyle>
Output style.- Since:
- 10.1.1
- Version:
- $Revision: 20180 $ $Date: 2017-05-22 15:49:24 -0300 (Mon, 22 May 2017) $
- See Also:
- the reference.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPACT
COMPRESSED
EXPANDED
NESTED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SassCompiler.CompilerOptions.OutputStyle
valueOf(String name)
Returns the enum constant of this type with the specified name.static SassCompiler.CompilerOptions.OutputStyle[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NESTED
public static final SassCompiler.CompilerOptions.OutputStyle NESTED
-
EXPANDED
public static final SassCompiler.CompilerOptions.OutputStyle EXPANDED
-
COMPACT
public static final SassCompiler.CompilerOptions.OutputStyle COMPACT
-
COMPRESSED
public static final SassCompiler.CompilerOptions.OutputStyle COMPRESSED
-
-
Method Detail
-
values
public static SassCompiler.CompilerOptions.OutputStyle[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SassCompiler.CompilerOptions.OutputStyle c : SassCompiler.CompilerOptions.OutputStyle.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SassCompiler.CompilerOptions.OutputStyle valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-