Enum LoadGraphWith.GraphData

    • Enum Constant Detail

      • MODERN

        public static final LoadGraphWith.GraphData MODERN
        Loads the "modern" TinkerPop toy graph which is like "classic", but with the "weight" value on edges stored as double and labels added for vertices. This should be the most commonly used graph instance for testing as graphs that support string, double and int should comprise the largest number of implementations.
      • GRATEFUL

        public static final LoadGraphWith.GraphData GRATEFUL
        Loads the "grateful dead" graph which is a "large" graph which provides for the construction of more complex traversals.
      • SINK

        public static final LoadGraphWith.GraphData SINK
        Loads a test graph which contains disconnected subgraphs specialized for testing purposes (e.g. a subgraph with a self-loop).
    • Method Detail

      • values

        public static LoadGraphWith.GraphData[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (LoadGraphWith.GraphData c : LoadGraphWith.GraphData.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static LoadGraphWith.GraphData valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • location

        public String location()