Enum Class IRenderer.ErrorMode

java.lang.Object
java.lang.Enum<IRenderer.ErrorMode>
de.uplanet.lucy.server.renderer.IRenderer.ErrorMode
All Implemented Interfaces:
Serializable, Comparable<IRenderer.ErrorMode>, Constable
Enclosing interface:
IRenderer

public static enum IRenderer.ErrorMode extends Enum<IRenderer.ErrorMode>
  • Enum Constant Details

    • exceptionThrow

      public static final IRenderer.ErrorMode exceptionThrow
      throws a RendererError Exception
    • errorMsgOnCast

      public static final IRenderer.ErrorMode errorMsgOnCast
      returns the given error Message if a not castable value shall be rendered, on a bad format or parse error an exception is thrown
    • errorMsgOnParse

      public static final IRenderer.ErrorMode errorMsgOnParse
      returns the given error Msg if a castable value is rendered, but the value format can't be parsed, on uncastable values an Exception is thrown
    • errorMsg

      public static final IRenderer.ErrorMode errorMsg
      returns the given error Msg if a castable value with an unparseable format is rendered, and/or the value is uncastable
  • Method Details

    • values

      public static IRenderer.ErrorMode[] 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 IRenderer.ErrorMode 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