Interface Value

All Known Implementing Classes:
BooleanValue, CharValue, DoubleValue, FloatValue, IntValue, LongValue, NotAValue, ObjectValue, StringValue

public interface Value
  • Method Details

    • isBoolean

      default boolean isBoolean()
    • isInt

      default boolean isInt()
    • isLong

      default boolean isLong()
    • isFloat

      default boolean isFloat()
    • isDouble

      default boolean isDouble()
    • isChar

      default boolean isChar()
    • isString

      default boolean isString()
    • isObject

      default boolean isObject()
    • asBoolean

      default boolean asBoolean()
    • asInt

      default int asInt()
    • asDouble

      default double asDouble()
    • asString

      default String asString()
    • asChar

      default char asChar()
    • asObject

      default Object asObject()
    • asLong

      default long asLong()
    • asFloat

      default float asFloat()