Enum Class StripedStart

java.lang.Object
java.lang.Enum<StripedStart>
com.jbstrap.ui.components.charts.params.enums.StripedStart
All Implemented Interfaces:
Serializable, Comparable<StripedStart>, Constable

public enum StripedStart extends Enum<StripedStart>
Chart axis stripe settings.
Author:
JBStrap
  • Enum Constant Details

    • FIRST

      public static final StripedStart FIRST
      The stripes start at the first item, and every stripe with an odd number is darkened.
    • SECOND

      public static final StripedStart SECOND
      The stripes start at the second item, and every stripe with an even number is darkened.
  • Method Details

    • values

      public static StripedStart[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static StripedStart valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<StripedStart>
    • fromName

      public static StripedStart fromName(String name)
      Gets the starting position of the stripes by its name.
      Parameters:
      name - The name of the stripes’ starting position
      Returns:
      Starting position for the specified name or null, if there is no starting position for the specified name