Interface IPropCnrFillSettings<FILL_OPTION extends IPropCnrFill>

All Superinterfaces:
IGProp<GProp<?>[]>, IPropCnr
All Known Implementing Classes:
EPlot2D, ESeries, Plot2D, Series

public interface IPropCnrFillSettings<FILL_OPTION extends IPropCnrFill> extends IPropCnr
Interface implements by a property container supporting setting for fill's.
Author:
Christopher Mindus
  • Method Details

    • get

      default GFill get(FILL_OPTION option)
      Gets a fill option.
      Parameters:
      option - The option to retrieve.
      Returns:
      The option value set, or its default value if not set.
    • getNoDefault

      default GFill getNoDefault(FILL_OPTION option)
      Gets a fill option without default value, i.e. returns null if not set.
      Parameters:
      option - The option to retrieve.
      Returns:
      The option value set, or null if not set.
    • set

      default boolean set(FILL_OPTION option, GFill fill)
      Sets a fill option.
      Parameters:
      option - The option to set.
      fill - The fill value to set, or null to set default.
      Returns:
      true if the value was changed, false for no change.