Interface MqlValue

All Known Subinterfaces:
MqlCallable, MqlHolder, MqlScope, MqlScope.Mutable
All Known Implementing Classes:
MqlIdentValue, MqlNumberValue, MqlScopeImpl, MqlScopeImpl.Mutable, MqlScriptScope

public sealed interface MqlValue permits MqlCallable, MqlHolder, MqlIdentValue, MqlNumberValue
Mutable marker for any possible mql value.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final MqlValue
     
  • Method Summary

    Modifier and Type
    Method
    Description
    default <Target> Target
    cast(@NotNull Class<Target> targetType)
     
    static @NotNull MqlValue
    from(boolean bool)
     
    static @NotNull MqlValue
    from(double dbl)
     
  • Field Details

  • Method Details

    • from

      @NotNull static @NotNull MqlValue from(boolean bool)
    • from

      @NotNull static @NotNull MqlValue from(double dbl)
    • cast

      default <Target> Target cast(@NotNull @NotNull Class<Target> targetType)