Class XNode

java.lang.Object
org.apache.ibatis.parsing.XNode

public class XNode extends Object
Author:
Clinton Begin
  • Constructor Details Link icon

  • Method Details Link icon

    • newXNode Link icon

      public XNode newXNode(Node node)
    • getParent Link icon

      public XNode getParent()
    • getPath Link icon

      public String getPath()
    • getValueBasedIdentifier Link icon

      public String getValueBasedIdentifier()
    • evalString Link icon

      public String evalString(String expression)
    • evalBoolean Link icon

      public Boolean evalBoolean(String expression)
    • evalDouble Link icon

      public Double evalDouble(String expression)
    • evalNodes Link icon

      public List<XNode> evalNodes(String expression)
    • evalNode Link icon

      public XNode evalNode(String expression)
    • getNode Link icon

      public Node getNode()
    • getName Link icon

      public String getName()
    • getStringBody Link icon

      public String getStringBody()
    • getStringBody Link icon

      public String getStringBody(String def)
    • getBooleanBody Link icon

      public Boolean getBooleanBody()
    • getBooleanBody Link icon

      public Boolean getBooleanBody(Boolean def)
    • getIntBody Link icon

      public Integer getIntBody()
    • getIntBody Link icon

      public Integer getIntBody(Integer def)
    • getLongBody Link icon

      public Long getLongBody()
    • getLongBody Link icon

      public Long getLongBody(Long def)
    • getDoubleBody Link icon

      public Double getDoubleBody()
    • getDoubleBody Link icon

      public Double getDoubleBody(Double def)
    • getFloatBody Link icon

      public Float getFloatBody()
    • getFloatBody Link icon

      public Float getFloatBody(Float def)
    • getEnumAttribute Link icon

      public <T extends Enum<T>> T getEnumAttribute(Class<T> enumType, String name)
    • getEnumAttribute Link icon

      public <T extends Enum<T>> T getEnumAttribute(Class<T> enumType, String name, T def)
    • getStringAttribute Link icon

      public String getStringAttribute(String name, Supplier<String> defSupplier)
      Return a attribute value as String.

      If attribute value is absent, return value that provided from supplier of default value.

      Parameters:
      name - attribute name
      defSupplier - a supplier of default value
      Returns:
      the string attribute
      Since:
      3.5.4
    • getStringAttribute Link icon

      public String getStringAttribute(String name)
    • getStringAttribute Link icon

      public String getStringAttribute(String name, String def)
    • getBooleanAttribute Link icon

      public Boolean getBooleanAttribute(String name)
    • getBooleanAttribute Link icon

      public Boolean getBooleanAttribute(String name, Boolean def)
    • getIntAttribute Link icon

      public Integer getIntAttribute(String name)
    • getIntAttribute Link icon

      public Integer getIntAttribute(String name, Integer def)
    • getLongAttribute Link icon

      public Long getLongAttribute(String name)
    • getLongAttribute Link icon

      public Long getLongAttribute(String name, Long def)
    • getDoubleAttribute Link icon

      public Double getDoubleAttribute(String name)
    • getDoubleAttribute Link icon

      public Double getDoubleAttribute(String name, Double def)
    • getFloatAttribute Link icon

      public Float getFloatAttribute(String name)
    • getFloatAttribute Link icon

      public Float getFloatAttribute(String name, Float def)
    • getChildren Link icon

      public List<XNode> getChildren()
    • getChildrenAsProperties Link icon

      public Properties getChildrenAsProperties()
    • toString Link icon

      public String toString()
      Overrides:
      toString in class Object