Enum Class Appearance

java.lang.Object
java.lang.Enum<Appearance>
nl.tudelft.simulation.dsol.swing.gui.appearance.Appearance
All Implemented Interfaces:
Serializable, Comparable<Appearance>, Constable

public enum Appearance extends Enum<Appearance>
Enum that contains a background color, foreground color and a font name, to be set throughout all components. Code based on OpenTrafficSim project component with the same purpose.

Copyright (c) 2020-2024 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See for project information DSOL Manual. The DSOL project is distributed under a three-clause BSD-style license, which can be found at DSOL License.

Author:
Alexander Verbraeck, Wouter Schakel
  • Enum Constant Details

    • DARK

      public static final Appearance DARK
      Dark.
    • GRAY

      public static final Appearance GRAY
      Gray.
    • BRIGHT

      public static final Appearance BRIGHT
      Bright.
    • LIGHT

      public static final Appearance LIGHT
      Light.
    • LEGACY

      public static final Appearance LEGACY
      Legacy, as the initial DSOL applications had.
    • RED

      public static final Appearance RED
      Red.
    • GREEN

      public static final Appearance GREEN
      Green.
    • BLUE

      public static final Appearance BLUE
      Blue.
  • Method Details

    • values

      public static Appearance[] 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 Appearance 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
    • getName

      public String getName()
      Returns the name.
      Returns:
      String; name
    • getBackground

      public Color getBackground()
      Returns the background color.
      Returns:
      Color; color
    • getForeground

      public Color getForeground()
      Returns the foreground color.
      Returns:
      Color; color
    • getBackdrop

      public Color getBackdrop()
      Returns the backdrop color.
      Returns:
      Color; color
    • getFont

      public String getFont()
      Returns the font name.
      Returns:
      String; font name