Class Values

java.lang.Object
me.datafox.dfxengine.values.utils.Values

public class Values extends Object
Initializer methods for Values (ValueImpl and StaticValue).
  • Constructor Details

    • Values

      public Values()
  • Method Details

    • of

      public static Value of(Handle handle, Numeral numeral, boolean immutable)
      Parameters:
      handle - Handle identifier for the Value
      numeral - Numeral to initialize the Value with
      immutable - true if the Value should be immutable
      Returns:
      Value with the specified parameters
    • of

      public static Value of(Handle handle, int i, boolean immutable)
      Parameters:
      handle - Handle identifier for the Value
      i - int to initialize the Value with
      immutable - true if the Value should be immutable
      Returns:
      Value with the specified parameters
    • of

      public static Value of(Handle handle, long l, boolean immutable)
      Parameters:
      handle - Handle identifier for the Value
      l - long to initialize the Value with
      immutable - true if the Value should be immutable
      Returns:
      Value with the specified parameters
    • of

      public static Value of(Handle handle, BigInteger bi, boolean immutable)
      Parameters:
      handle - Handle identifier for the Value
      bi - BigInteger to initialize the Value with
      immutable - true if the Value should be immutable
      Returns:
      Value with the specified parameters
    • of

      public static Value of(Handle handle, float f, boolean immutable)
      Parameters:
      handle - Handle identifier for the Value
      f - float to initialize the Value with
      immutable - true if the Value should be immutable
      Returns:
      Value with the specified parameters
    • of

      public static Value of(Handle handle, double d, boolean immutable)
      Parameters:
      handle - Handle identifier for the Value
      d - double to initialize the Value with
      immutable - true if the Value should be immutable
      Returns:
      Value with the specified parameters
    • of

      public static Value of(Handle handle, BigDecimal bd, boolean immutable)
      Parameters:
      handle - Handle identifier for the Value
      bd - BigDecimal to initialize the Value with
      immutable - true if the Value should be immutable
      Returns:
      Value with the specified parameters
    • of

      public static Value of(Handle handle, String str, boolean immutable)
      Parameters:
      handle - Handle identifier for the Value
      str - String to initialize the Value with
      immutable - true if the Value should be immutable
      Returns:
      Value with the specified parameters
      Throws:
      NumberFormatException - if str is not a valid number representation
    • of

      public static Value of(Numeral numeral)
      Parameters:
      numeral - Numeral to initialize the Value with
      Returns:
      static Value with the specified value
    • of

      public static Value of(int i)
      Parameters:
      i - int to initialize the Value with
      Returns:
      static Value with the specified value
    • of

      public static Value of(long l)
      Parameters:
      l - long to initialize the Value with
      Returns:
      static Value with the specified value
    • of

      public static Value of(BigInteger bi)
      Parameters:
      bi - BigInteger to initialize the Value with
      Returns:
      static Value with the specified value
    • of

      public static Value of(float f)
      Parameters:
      f - float to initialize the Value with
      Returns:
      static Value with the specified value
    • of

      public static Value of(double d)
      Parameters:
      d - double to initialize the Value with
      Returns:
      static Value with the specified value
    • of

      public static Value of(BigDecimal bd)
      Parameters:
      bd - BigDecimal to initialize the Value with
      Returns:
      static Value with the specified value
    • of

      public static Value of(String str)
      Parameters:
      str - String to initialize the Value with
      Returns:
      static Value with the specified value
      Throws:
      NumberFormatException - if str is not a valid number representation
    • mutable

      public static Value mutable(Handle handle, Numeral numeral)
      Parameters:
      handle - Handle identifier for the Value
      numeral - Numeral to initialize the Value with
      Returns:
      mutable Value with the specified parameters
    • mutable

      public static Value mutable(Handle handle, int i)
      Parameters:
      handle - Handle identifier for the Value
      i - int to initialize the Value with
      Returns:
      mutable Value with the specified parameters
    • mutable

      public static Value mutable(Handle handle, long l)
      Parameters:
      handle - Handle identifier for the Value
      l - long to initialize the Value with
      Returns:
      mutable Value with the specified parameters
    • mutable

      public static Value mutable(Handle handle, BigInteger bi)
      Parameters:
      handle - Handle identifier for the Value
      bi - BigInteger to initialize the Value with
      Returns:
      mutable Value with the specified parameters
    • mutable

      public static Value mutable(Handle handle, float f)
      Parameters:
      handle - Handle identifier for the Value
      f - float to initialize the Value with
      Returns:
      mutable Value with the specified parameters
    • mutable

      public static Value mutable(Handle handle, double d)
      Parameters:
      handle - Handle identifier for the Value
      d - double to initialize the Value with
      Returns:
      mutable Value with the specified parameters
    • mutable

      public static Value mutable(Handle handle, BigDecimal bd)
      Parameters:
      handle - Handle identifier for the Value
      bd - BigDecimal to initialize the Value with
      Returns:
      mutable Value with the specified parameters
    • mutable

      public static Value mutable(Handle handle, String str)
      Parameters:
      handle - Handle identifier for the Value
      str - String to initialize the Value with
      Returns:
      mutable Value with the specified parameters
      Throws:
      NumberFormatException - if str is not a valid number representation
    • immutable

      public static Value immutable(Handle handle, Numeral numeral)
      Parameters:
      handle - Handle identifier for the Value
      numeral - Numeral to initialize the Value with
      Returns:
      immutable Value with the specified parameters
    • immutable

      public static Value immutable(Handle handle, int i)
      Parameters:
      handle - Handle identifier for the Value
      i - int to initialize the Value with
      Returns:
      immutable Value with the specified parameters
    • immutable

      public static Value immutable(Handle handle, long l)
      Parameters:
      handle - Handle identifier for the Value
      l - long to initialize the Value with
      Returns:
      immutable Value with the specified parameters
    • immutable

      public static Value immutable(Handle handle, BigInteger bi)
      Parameters:
      handle - Handle identifier for the Value
      bi - BigInteger to initialize the Value with
      Returns:
      immutable Value with the specified parameters
    • immutable

      public static Value immutable(Handle handle, float f)
      Parameters:
      handle - Handle identifier for the Value
      f - float to initialize the Value with
      Returns:
      immutable Value with the specified parameters
    • immutable

      public static Value immutable(Handle handle, double d)
      Parameters:
      handle - Handle identifier for the Value
      d - double to initialize the Value with
      Returns:
      immutable Value with the specified parameters
    • immutable

      public static Value immutable(Handle handle, BigDecimal bd)
      Parameters:
      handle - Handle identifier for the Value
      bd - BigDecimal to initialize the Value with
      Returns:
      immutable Value with the specified parameters
    • immutable

      public static Value immutable(Handle handle, String str)
      Parameters:
      handle - Handle identifier for the Value
      str - String to initialize the Value with
      Returns:
      immutable Value with the specified parameters
      Throws:
      NumberFormatException - if str is not a valid number representation