Class AXValue


  • public class AXValue
    extends java.lang.Object
    A single computed AX property.
    • Constructor Summary

      Constructors 
      Constructor Description
      AXValue​(AXValueType type, java.util.Optional<java.lang.Object> value, java.util.Optional<java.util.List<AXRelatedNode>> relatedNodes, java.util.Optional<java.util.List<AXValueSource>> sources)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.Optional<java.util.List<AXRelatedNode>> getRelatedNodes()
      One or more related nodes, if applicable.
      java.util.Optional<java.util.List<AXValueSource>> getSources()
      The sources which contributed to the computation of this property.
      AXValueType getType()
      The type of this value.
      java.util.Optional<java.lang.Object> getValue()
      The computed value of this property.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • AXValue

        public AXValue​(AXValueType type,
                       java.util.Optional<java.lang.Object> value,
                       java.util.Optional<java.util.List<AXRelatedNode>> relatedNodes,
                       java.util.Optional<java.util.List<AXValueSource>> sources)
    • Method Detail

      • getType

        public AXValueType getType()
        The type of this value.
      • getValue

        public java.util.Optional<java.lang.Object> getValue()
        The computed value of this property.
      • getRelatedNodes

        public java.util.Optional<java.util.List<AXRelatedNode>> getRelatedNodes()
        One or more related nodes, if applicable.
      • getSources

        public java.util.Optional<java.util.List<AXValueSource>> getSources()
        The sources which contributed to the computation of this property.