Record Class ConstantValue

java.lang.Object
java.lang.Record
org.ek9lang.compiler.phase5.flow.ConstantValue
All Implemented Interfaces:
AbstractValue

public record ConstantValue(Object value) extends Record implements AbstractValue
Represents a variable known to hold a specific constant value.

Supported constant types:

The value is stored as an Object to support all types uniformly. Type-specific comparison is handled by evaluateCondition(String, AbstractValue) using Comparable.compareTo(T).

  • Constructor Details

    • ConstantValue

      public ConstantValue(Object value)
      Creates an instance of a ConstantValue record class.
      Parameters:
      value - the value for the value record component
  • Method Details

    • of

      public static ConstantValue of(int intValue)
      Factory for integer constants.
    • of

      public static ConstantValue of(boolean boolValue)
      Factory for boolean constants.
    • of

      public static ConstantValue of(String strValue)
      Factory for string constants.
    • of

      public static ConstantValue of(double floatValue)
      Factory for float constants.
    • of

      public static ConstantValue of(char charValue)
      Factory for character constants.
    • of

      public static ConstantValue of(LocalDate dateValue)
      Factory for date constants.
    • of

      public static ConstantValue of(LocalTime timeValue)
      Factory for time constants.
    • of

      public static ConstantValue of(OffsetDateTime dateTimeValue)
      Factory for datetime constants.
    • ofMillisecond

      public static ConstantValue ofMillisecond(long msValue)
      Factory for millisecond constants. Uses a distinct name to avoid overload ambiguity with of(int).
    • join

      public AbstractValue join(AbstractValue other)
      Description copied from interface: AbstractValue
      Join this value with another at a branch convergence point. Returns the least upper bound of the two values.

      Key rules:

      • BOTTOM join X = X (unreachable path is ignored)
      • X join BOTTOM = X
      • TOP join X = TOP
      • Constant(a) join Constant(a) = Constant(a) (both agree)
      • Constant(a) join Constant(b) = TOP (disagreement)
      Specified by:
      join in interface AbstractValue
    • evaluateCondition

      public ConditionResult evaluateCondition(String operator, AbstractValue operand)
      Description copied from interface: AbstractValue
      Evaluate whether this abstract value satisfies a comparison condition.
      Specified by:
      evaluateCondition in interface AbstractValue
      Parameters:
      operator - the comparison operator (==, <>, <, >, etc.)
      operand - the right-hand side value to compare against
      Returns:
      TRUE if condition is always satisfied, FALSE if never satisfied, UNKNOWN if indeterminate
    • isKnown

      public boolean isKnown()
      Description copied from interface: AbstractValue
      Check if this value represents a known state (not TOP and not BOTTOM).
      Specified by:
      isKnown in interface AbstractValue
    • isBottom

      public boolean isBottom()
      Description copied from interface: AbstractValue
      Check if this value represents an unreachable program point.
      Specified by:
      isBottom in interface AbstractValue
    • toString

      public String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • value

      public Object value()
      Returns the value of the value record component.
      Returns:
      the value of the value record component