Uses of Class
org.libxmq.NotFoundException

  • Uses of NotFoundException in org.libxmq

    Methods in org.libxmq that throw NotFoundException
    Modifier and Type
    Method
    Description
    Query.element(String xpath)
    Fetches a single element from the xpath.
    void
    Query.expect(String xpath, NodeCallback cb)
    Perform a single callback for a single node matching the xpath expression.
    boolean
    Query.getBoolean(String xpath)
    Get a boolean from an xpath location.
    double
    Query.getDouble(String xpath, String restriction)
    Get a 64 bit IEEE double floating point value from an xpath location and check that it complies with the restrictions.
    float
    Query.getFloat(String xpath, String restriction)
    Get a 32 bit IEEE double floating point value from an xpath location and check that it complies with the restrictions.
    static String
    QueryNetwork.getFQDN(String xpath)
    Retrieve a fully qualified domain name, such as mail.mydomain.com.
    static String
    QueryNetwork.getHostname(String xpath)
    Retrieve a host name, such as mail or gateway or mycomputer.
    QueryNetwork.getInetAddress(String xpath)
    Retrieve an internet address ipv4 or ipv6.
    int
    Query.getInt(String xpath, String restriction)
    Get a 32 bit signed integer from an xpath location and check that it complies with the restriction.
    long
    Query.getLong(String xpath, String restriction)
    Get a 64 bit signed integer from an xpath location that complies with any restriction.
    Query.getString(String xpath, String restriction)
    Get a string from an xpath location that complies with a restriction.
    static URL
    QueryNetwork.getURL(String xpath)
    Retrieve an URL, such as https://foo.bar.com?
    Query.query(String xpath)
    Fetches a single element and wraps it inside a query from the xpath.