All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.bit3.jsass.OutputStyle Maven / Gradle / Ivy

The newest version!
package io.bit3.jsass;

public enum OutputStyle {
  /**
   * Nested style.
   */
  NESTED(1),

  /**
   * Expanded style.
   */
  EXPANDED(2),

  /**
   * Compact style.
   */
  COMPACT(3),

  /**
   * Compressed style.
   */
  COMPRESSED(4);

  /**
   * The numeric representation.
   *
   * 

This is primary used in the native adapter. */ public final int numeric; OutputStyle(int numeric) { this.numeric = numeric; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy