Enum Class Type

java.lang.Object
java.lang.Enum<Type>
org.mapfish.print.processor.map.scalebar.Type
All Implemented Interfaces:
Serializable, Comparable<Type>, Constable

public enum Type extends Enum<Type>
Scalebar type.
  • Enum Constant Details

    • LINE

      public static final Type LINE
      A simple line with ticks.
    • BAR

      public static final Type BAR
      A bar with alternating black and white zones marking the sub-intervals.
    • BAR_SUB

      public static final Type BAR_SUB
      A bar with alternating black and white zones marking the sub-intervals. Intervals have small additional ticks.
  • Method Details

    • values

      public static Type[] 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 Type 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
    • fromString

      public static Type fromString(String label)
      Get a type from its label.
      Parameters:
      label - the type label
    • createDrawer

      public abstract ScalebarDrawer createDrawer(Graphics2D graphics2d, ScaleBarRenderSettings settings)
      Create a ScalebarDrawer instance for this type.
      Parameters:
      graphics2d - The graphics context.
      settings - Parameters for rendering the scalebar.
    • getLabel

      public final String getLabel()