Uses of Class
edu.uky.ai.io.Node

Packages that use Node
Package
Description
Contains utilities for reading and writing AI problems and the algorithms that solve them.
  • Uses of Node in edu.uky.ai.io

    Subclasses of Node in edu.uky.ai.io
    Modifier and Type
    Class
    Description
    class 
    A list is a collection of 0 to many nodes.
    class 
    A symbol is a string of characters.
    Fields in edu.uky.ai.io declared as Node
    Modifier and Type
    Field
    Description
    final Node
    List.first
    The first elerment in this list
    final Node
    Node.next
    The node that follows this node (i.e.
    Methods in edu.uky.ai.io that return Node
    Modifier and Type
    Method
    Description
    static final Node
    Node.parse(File file)
    Parse a given file as a node.
    static final Node
    Node.parse(String string)
    Parse a given string as a node.
    Returns the first element in the list or throws an exception if no such element exists.
    Returns the node's next sibling or throws an exception if no such node exists.
    Methods in edu.uky.ai.io with parameters of type Node
    Modifier and Type
    Method
    Description
    ObjectParser.parse(Node node, Parser parser)
    Converts the given node into an object of type E.
    final <E> E
    Parser.parse(Node node, Class<? extends E> type, Class<? extends E>... types)
    Parses a given Node according to the rules defined by this parser and returns the object created.