Class DeterminismEnvelope<T>

  • Type Parameters:
    T - type of the wrapped value

    public class DeterminismEnvelope<T>
    extends Object
    Envelope that carries whether the wrapped value is deterministic or not.
    • Method Detail

      • isDeterministic

        public boolean isDeterministic()
      • unwrap

        public T unwrap()
      • deterministicValue

        public static <T> DeterminismEnvelope<T> deterministicValue​(T value)
      • nondeterministicValue

        public static <T> DeterminismEnvelope<T> nondeterministicValue​(T value)