Class BuilderConstants

java.lang.Object
com.jfcbuilder.types.BuilderConstants

public abstract class BuilderConstants extends Object
A family of constants used throughout this builder framework.
  • Field Details

    • SOLID_LINE

      public static final Stroke SOLID_LINE
      Stroke configured for drawing a solid line.
    • THICK_SOLID_LINE

      public static final Stroke THICK_SOLID_LINE
      Stroke configured for drawing a thick solid line.
    • THIN_SOLID_LINE

      public static final Stroke THIN_SOLID_LINE
      Stroke configured for drawing a thin solid line.
    • DASHED_LINE

      public static final BasicStroke DASHED_LINE
      Stroke configured for drawing a dashed line.
    • THICK_DASHED_LINE

      public static final BasicStroke THICK_DASHED_LINE
      Stroke configured for drawing a thick dashed line.
    • THIN_DASHED_LINE

      public static final BasicStroke THIN_DASHED_LINE
      Stroke configured for drawing a thin dashed line.
    • DEFAULT_FONT

      public static final Font DEFAULT_FONT
      A default font that can be used throughout the application.
    • DEFAULT_PLOT_WEIGHT

      public static final int DEFAULT_PLOT_WEIGHT
      A default plot weight that can be used throughout the application.
      See Also:
    • DEFAULT_GRIDLINE_PAINT

      public static final Color DEFAULT_GRIDLINE_PAINT
      A default plot grid-line color that can be used throughout the application.
    • DARK_BLUE

      public static final Color DARK_BLUE
    • DARK_GREEN

      public static final Color DARK_GREEN
    • DARK_RED

      public static final Color DARK_RED
    • TRANSPARENT_GREEN

      public static final Color TRANSPARENT_GREEN
    • TRANSPARENT_DARK_GREEN

      public static final Color TRANSPARENT_DARK_GREEN
    • TRANSPARENT_RED

      public static final Color TRANSPARENT_RED
    • TRANSPARENT_DARK_RED

      public static final Color TRANSPARENT_DARK_RED
    • TRANSPARENT_YELLOW

      public static final Color TRANSPARENT_YELLOW
    • DEFAULT_UP_COLOR

      public static final Color DEFAULT_UP_COLOR
      A default color that can be used throughout the application to represent a price close up event.
    • DEFAULT_DOWN_COLOR

      public static final Color DEFAULT_DOWN_COLOR
      A default color that can be used throughout the application to represent a price close down event.
    • DEFAULT_FILL_COLOR

      public static final Color DEFAULT_FILL_COLOR
      A default color that can be used throughout the application to fill shapes.
    • DEFAULT_OUTLINE_COLOR

      public static final Color DEFAULT_OUTLINE_COLOR
      A default color that can be used throughout the application for shape outlines.
    • DEFAULT_LINE_COLOR

      public static final Color DEFAULT_LINE_COLOR
      A default color that can be used throughout the application for drawing lines.
    • DEFAULT_LINE_STYLE

      public static final Stroke DEFAULT_LINE_STYLE
      A default Stroke that can be used throughout the application for drawing lines.
    • EMPTY_SERIES_DATA

      public static final double[] EMPTY_SERIES_DATA
      A reusable empty double value array to avoid creating many such instances.
    • EMPTY_TIME_DATA

      public static final long[] EMPTY_TIME_DATA
      A reusable empty milliseconds since epoch (long) value array to avoid creating many such instances.
    • DEFAULT_ORIENTATION

      public static final Orientation DEFAULT_ORIENTATION
      A default orientation that can be used throughout the application for drawing various items.
    • DEFAULT_SHOW_TIME_GAPS

      public static final boolean DEFAULT_SHOW_TIME_GAPS
      Whether or not to render time gaps by default in time series plots.
      See Also:
    • DEFAULT_BAR_WIDTH_PERCENT

      public static final double DEFAULT_BAR_WIDTH_PERCENT
      Percentage of total possible bar width to use for drawing XY bars and candlesticks. Use a large value to create small spacing between bars and vice versa for creating large spacing.
      See Also:
  • Constructor Details

    • BuilderConstants

      public BuilderConstants()