Modified: tinkerpop/site/dotnetdocs/3.3.6-SNAPSHOT/index.json URL: http://svn.apache.org/viewvc/tinkerpop/site/dotnetdocs/3.3.6-SNAPSHOT/index.json?rev=1855344&r1=1855343&r2=1855344&view=diff ============================================================================== --- tinkerpop/site/dotnetdocs/3.3.6-SNAPSHOT/index.json (original) +++ tinkerpop/site/dotnetdocs/3.3.6-SNAPSHOT/index.json Tue Mar 12 20:05:59 2019 @@ -1,363 +1,403 @@ { - "api/Gremlin.Net.Driver.GremlinServer.html": { - "href": "api/Gremlin.Net.Driver.GremlinServer.html", - "title": "Class GremlinServer | Apache TinkerPop - Gremlin.NET API Docs", - "keywords": "Class GremlinServer Represents a Gremlin Server. Inheritance System.Object GremlinServer Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ToString() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Gremlin.Net.Driver Assembly : cs.temp.dll.dll Syntax public class GremlinServer Constructors GremlinServer(String, Int32, Boolean, String, String) Initializes a new instance of the GremlinServer class with the specified connection parameters. Declaration public GremlinServer(string hostname = \"localhost\", int port = 8182, bool enableSsl = false, string username = null, string password = null) Parameters Type Name Description System.String hostname The hostname of the server. System.Int32 port The port on which Gremlin Server can be reached. System.Boolean enableSsl Specifies whether SSL should be enabled. System.String username The username to submit on requests that require authentication. System.String password The password to submit on requests that require authentication. Properties Password Gets the password to submit on requests that require authentication. Declaration public string Password { get; } Property Value Type Description System.String Uri Gets the URI of the Gremlin Server. Declaration public Uri Uri { get; } Property Value Type Description Uri The WebSocket that the Gremlin Server responds to. Username Gets the username to submit on requests that require authentication. Declaration public string Username { get; } Property Value Type Description System.String" + "api/Gremlin.Net.Driver.IGremlinClient.html": { + "href": "api/Gremlin.Net.Driver.IGremlinClient.html", + "title": "Interface IGremlinClient | Apache TinkerPop - Gremlin.NET API Docs", + "keywords": "Interface IGremlinClient Provides a mechanism for submitting Gremlin requests. Inherited Members System.IDisposable.Dispose() Namespace : Gremlin.Net.Driver Assembly : cs.temp.dll.dll Syntax public interface IGremlinClient : IDisposable Methods SubmitAsync<T>(RequestMessage) Submits a request message as an asynchronous operation. Declaration Task<IReadOnlyCollection<T>> SubmitAsync<T>(RequestMessage requestMessage) Parameters Type Name Description RequestMessage requestMessage The RequestMessage to send. Returns Type Description System.Threading.Tasks.Task < System.Collections.Generic.IReadOnlyCollection <T>> A collection of the data returned from the server. Type Parameters Name Description T The type of the expected results. Exceptions Type Condition ResponseException Thrown when a response is received from Gremlin Server that indicates that an error occurred." }, - "api/Gremlin.Net.Driver.Remote.DriverRemoteConnection.html": { - "href": "api/Gremlin.Net.Driver.Remote.DriverRemoteConnection.html", - "title": "Class DriverRemoteConnection | Apache TinkerPop - Gremlin.NET API Docs", - "keywords": "Class DriverRemoteConnection A implementation for Gremlin Server. Inheritance System.Object DriverRemoteConnection Implements System.IDisposable Namespace : Gremlin.Net.Driver.Remote Assembly : cs.temp.dll.dll Syntax public class DriverRemoteConnection : IRemoteConnection, IDisposable Constructors DriverRemoteConnection(IGremlinClient) Initializes a new . Declaration public DriverRemoteConnection(IGremlinClient client) Parameters Type Name Description IGremlinClient client The IGremlinClient that will be used for the connection. Exceptions Type Condition System.ArgumentNullException Thrown when client is null. DriverRemoteConnection(IGremlinClient, String) Initializes a new . Declaration public DriverRemoteConnection(IGremlinClient client, string traversalSource) Parameters Type Name Description IGremlinClient client The IGremlinClient that will be used for the connection. System.String traversalSource The name of the traversal source on the server to bind to. Excep tions Type Condition System.ArgumentNullException Thrown when client is null. Methods Dispose() Declaration public void Dispose() SubmitAsync<S, E>(Bytecode) Submits for evaluation to a remote Gremlin Server. Declaration public Task<ITraversal<S, E>> SubmitAsync<S, E>(Bytecode bytecode) Parameters Type Name Description Bytecode bytecode The to submit. Returns Type Description System.Threading.Tasks.Task < ITraversal <S, E>> A allowing to access the results and side-effects. Type Parameters Name Description S E Implements System.IDisposable" + "api/Gremlin.Net.Driver.Remote.html": { + "href": "api/Gremlin.Net.Driver.Remote.html", + "title": "Namespace Gremlin.Net.Driver.Remote | Apache TinkerPop - Gremlin.NET API Docs", + "keywords": "Namespace Gremlin.Net.Driver.Remote Classes DriverRemoteConnection A implementation for Gremlin Server." }, - "api/Gremlin.Net.Driver.html": { - "href": "api/Gremlin.Net.Driver.html", - "title": "Namespace Gremlin.Net.Driver | Apache TinkerPop - Gremlin.NET API Docs", - "keywords": "Namespace Gremlin.Net.Driver Classes GremlinClient Provides a mechanism for submitting Gremlin requests to one Gremlin Server. GremlinClientExtensions Provides extension methods for the IGremlinClient interface. GremlinServer Represents a Gremlin Server. Tokens String constants used to configure a RequestMessage . Interfaces IGremlinClient Provides a mechanism for submitting Gremlin requests." + "api/Gremlin.Net.Process.Remote.IRemoteConnection.html": { + "href": "api/Gremlin.Net.Process.Remote.IRemoteConnection.html", + "title": "Interface IRemoteConnection | Apache TinkerPop - Gremlin.NET API Docs", + "keywords": "Interface IRemoteConnection A simple abstraction of a \"connection\" to a \"server\". Namespace : Gremlin.Net.Process.Remote Assembly : cs.temp.dll.dll Syntax public interface IRemoteConnection Methods SubmitAsync<S, E>(Bytecode) Submits to a server and returns a . Declaration Task<ITraversal<S, E>> SubmitAsync<S, E>(Bytecode bytecode) Parameters Type Name Description Bytecode bytecode The to send. Returns Type Description System.Threading.Tasks.Task < ITraversal <S, E>> The with the results and optional side-effects. Type Parameters Name Description S E" }, - "api/Gremlin.Net.Process.Remote.RemoteStrategy.html": { - "href": "api/Gremlin.Net.Process.Remote.RemoteStrategy.html", - "title": "Class RemoteStrategy | Apache TinkerPop - Gremlin.NET API Docs", - "keywords": "Class RemoteStrategy Reconstructs a by submitting it to a remote server via an IRemoteConnection instance. Inheritance System.Object RemoteStrategy Namespace : Gremlin.Net.Process.Remote Assembly : cs.temp.dll.dll Syntax public class RemoteStrategy : ITraversalStrategy Constructors RemoteStrategy(IRemoteConnection) Initializes a new instance of the RemoteStrategy class. Declaration public RemoteStrategy(IRemoteConnection remoteConnection) Parameters Type Name Description IRemoteConnection remoteConnection The IRemoteConnection that should be used. Methods Apply<S, E>(ITraversal<S, E>) Declaration public void Apply<S, E>(ITraversal<S, E> traversal) Parameters Type Name Description ITraversal <S, E> traversal Type Parameters Name Description S E ApplyAsync<S, E>(ITraversal<S, E>) Declaration public Task ApplyAsync<S, E>(ITraversal<S, E> traversal) Parameters Type Name Description ITraversal <S, E> traversal Returns Type Description System.Threading.Tasks.Task Type Par ameters Name Description S E" + "api/Gremlin.Net.Process.Traversal.AnonymousTraversalSource.html": { + "href": "api/Gremlin.Net.Process.Traversal.AnonymousTraversalSource.html", + "title": "Class AnonymousTraversalSource | Apache TinkerPop - Gremlin.NET API Docs", + "keywords": "Class AnonymousTraversalSource Provides a method for creating a GraphTraversalSource that does not spawn from a instance. Inheritance System.Object AnonymousTraversalSource Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ToString() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Gremlin.Net.Process.Traversal Assembly : cs.temp.dll.dll Syntax public class AnonymousTraversalSource Methods Traversal() Generates a reusable GraphTraversalSource instance. Declaration public static GraphTraversalSource Traversal() Returns Type Description GraphTraversalSource A graph traversal source." }, - "api/Gremlin.Net.Process.Traversal.Direction.html": { - "href": "api/Gremlin.Net.Process.Traversal.Direction.html", - "title": "Class Direction | Apache TinkerPop - Gremlin.NET API Docs", - "keywords": "Class Direction Inheritance System.Object EnumWrapper Direction Implements System.IEquatable < EnumWrapper > Inherited Members EnumWrapper.EnumName EnumWrapper.EnumValue EnumWrapper.Equals(EnumWrapper) EnumWrapper.Equals(Object) EnumWrapper.GetHashCode() System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.MemberwiseClone() System.Object.ToString() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Gremlin.Net.Process.Traversal Assembly : cs.temp.dll.dll Syntax public class Direction : EnumWrapper, IEquatable<EnumWrapper> Properties Both Declaration public static Direction Both { get; } Property Value Type Description Direction In Declaration public static Direction In { get; } Property Value Type Description Direction Out Declaration public static Direction Out { get; } Property Value Type Description Direction Methods GetByValue(String) Gets the Direction enumeration by value. Declaration public static Direc tion GetByValue(string value) Parameters Type Name Description System.String value Returns Type Description Direction Implements System.IEquatable<T>" + "api/Gremlin.Net.Process.Traversal.Strategy.Optimization.RangeByIsCountStrategy.html": { + "href": "api/Gremlin.Net.Process.Traversal.Strategy.Optimization.RangeByIsCountStrategy.html", + "title": "Class RangeByIsCountStrategy | Apache TinkerPop - Gremlin.NET API Docs", + "keywords": "Class RangeByIsCountStrategy Optimizes any occurrence of Count() -step followed by an Is() -step. Inheritance System.Object AbstractTraversalStrategy RangeByIsCountStrategy Implements ITraversalStrategy System.IEquatable < AbstractTraversalStrategy > Inherited Members AbstractTraversalStrategy.StrategyName AbstractTraversalStrategy.Configuration AbstractTraversalStrategy.Equals(AbstractTraversalStrategy) AbstractTraversalStrategy.Apply<S, E>(ITraversal<S, E>) AbstractTraversalStrategy.ApplyAsync<S, E>(ITraversal<S, E>) AbstractTraversalStrategy.Equals(Object) AbstractTraversalStrategy.GetHashCode() AbstractTraversalStrategy.ToString() System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Gremlin.Net.Process.Traversal.Strategy.Optimization Assembly : cs.temp.dll.dll Syntax public class RangeByIsCountStrategy : AbstractTraversalStrategy, ITraver salStrategy, IEquatable<AbstractTraversalStrategy> Implements ITraversalStrategy System.IEquatable<T>" }, - "api/Gremlin.Net.Process.Traversal.GraphSONVersion.html": { - "href": "api/Gremlin.Net.Process.Traversal.GraphSONVersion.html", - "title": "Class GraphSONVersion | Apache TinkerPop - Gremlin.NET API Docs", - "keywords": "Class GraphSONVersion Inheritance System.Object EnumWrapper GraphSONVersion Implements System.IEquatable < EnumWrapper > Inherited Members EnumWrapper.EnumName EnumWrapper.EnumValue EnumWrapper.Equals(EnumWrapper) EnumWrapper.Equals(Object) EnumWrapper.GetHashCode() System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.MemberwiseClone() System.Object.ToString() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Gremlin.Net.Process.Traversal Assembly : cs.temp.dll.dll Syntax public class GraphSONVersion : EnumWrapper, IEquatable<EnumWrapper> Properties V1_0 Declaration public static GraphSONVersion V1_0 { get; } Property Value Type Description GraphSONVersion V2_0 Declaration public static GraphSONVersion V2_0 { get; } Property Value Type Description GraphSONVersion V3_0 Declaration public static GraphSONVersion V3_0 { get; } Property Value Type Description GraphSONVersion Methods GetByValue(String) Gets the Gra phSONVersion enumeration by value. Declaration public static GraphSONVersion GetByValue(string value) Parameters Type Name Description System.String value Returns Type Description GraphSONVersion Implements System.IEquatable<T>" + "api/Gremlin.Net.Process.Traversal.T.html": { + "href": "api/Gremlin.Net.Process.Traversal.T.html", + "title": "Class T | Apache TinkerPop - Gremlin.NET API Docs", + "keywords": "Class T Inheritance System.Object EnumWrapper T Implements System.IEquatable < EnumWrapper > IFunction Inherited Members EnumWrapper.EnumName EnumWrapper.EnumValue EnumWrapper.Equals(EnumWrapper) EnumWrapper.Equals(Object) EnumWrapper.GetHashCode() System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.MemberwiseClone() System.Object.ToString() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Gremlin.Net.Process.Traversal Assembly : cs.temp.dll.dll Syntax public class T : EnumWrapper, IEquatable<EnumWrapper>, IFunction Properties Id Declaration public static T Id { get; } Property Value Type Description T Key Declaration public static T Key { get; } Property Value Type Description T Label Declaration public static T Label { get; } Property Value Type Description T Value Declaration public static T Value { get; } Property Value Type Description T Methods GetByValue(String) Gets the T enumeration by value. Decla ration public static T GetByValue(string value) Parameters Type Name Description System.String value Returns Type Description T Implements System.IEquatable<T> IFunction" }, - "api/Gremlin.Net.Process.Traversal.IBinaryOperator.html": { - "href": "api/Gremlin.Net.Process.Traversal.IBinaryOperator.html", - "title": "Interface IBinaryOperator | Apache TinkerPop - Gremlin.NET API Docs", - "keywords": "Interface IBinaryOperator Represents an operation upon two operands of the same type, producing a result of the same type as the operands. This is a specialization of IBiFunction for the case where the operands and the result are all of the same type. Namespace : Gremlin.Net.Process.Traversal Assembly : cs.temp.dll.dll Syntax public interface IBinaryOperator : IBiFunction" + "api/Gremlin.Net.Process.Traversal.Traverser.html": { + "href": "api/Gremlin.Net.Process.Traversal.Traverser.html", + "title": "Class Traverser | Apache TinkerPop - Gremlin.NET API Docs", + "keywords": "Class Traverser A traverser represents the current state of an object flowing through a ITraversal . Inheritance System.Object Traverser Inherited Members System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.MemberwiseClone() System.Object.ToString() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Gremlin.Net.Process.Traversal Assembly : cs.temp.dll.dll Syntax public class Traverser Constructors Traverser(Object, Int64) Initializes a new instance of the Traverser class. Declaration public Traverser(dynamic obj, long bulk = 1L) Parameters Type Name Description System.Object obj The object of the traverser. System.Int64 bulk The number of traversers represented in this traverser. Properties Bulk Gets the number of traversers represented in this traverser. Declaration public long Bulk { get; } Property Value Type Description System.Int64 Object Gets the object of this traverser. Declaration public dynamic Obje ct { get; } Property Value Type Description System.Object Methods Equals(Traverser) Declaration public bool Equals(Traverser other) Parameters Type Name Description Traverser other Returns Type Description System.Boolean Equals(Object) Declaration public override bool Equals(object obj) Parameters Type Name Description System.Object obj Returns Type Description System.Boolean Overrides System.Object.Equals(System.Object) GetHashCode() Declaration public override int GetHashCode() Returns Type Description System.Int32 Overrides System.Object.GetHashCode()" }, - "api/Gremlin.Net.Process.Traversal.Strategy.Finalization.MatchAlgorithmStrategy.html": { - "href": "api/Gremlin.Net.Process.Traversal.Strategy.Finalization.MatchAlgorithmStrategy.html", - "title": "Class MatchAlgorithmStrategy | Apache TinkerPop - Gremlin.NET API Docs", - "keywords": "Class MatchAlgorithmStrategy Inheritance System.Object AbstractTraversalStrategy MatchAlgorithmStrategy Implements ITraversalStrategy System.IEquatable < AbstractTraversalStrategy > Inherited Members AbstractTraversalStrategy.StrategyName AbstractTraversalStrategy.Configuration AbstractTraversalStrategy.Equals(AbstractTraversalStrategy) AbstractTraversalStrategy.Apply<S, E>(ITraversal<S, E>) AbstractTraversalStrategy.ApplyAsync<S, E>(ITraversal<S, E>) AbstractTraversalStrategy.Equals(Object) AbstractTraversalStrategy.GetHashCode() AbstractTraversalStrategy.ToString() System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Gremlin.Net.Process.Traversal.Strategy.Finalization Assembly : cs.temp.dll.dll Syntax public class MatchAlgorithmStrategy : AbstractTraversalStrategy, ITraversalStrategy, IEquatable<AbstractTraversalStrategy> Constructors Match AlgorithmStrategy() Declaration public MatchAlgorithmStrategy() MatchAlgorithmStrategy(String) Declaration public MatchAlgorithmStrategy(string matchAlgorithm = null) Parameters Type Name Description System.String matchAlgorithm Implements ITraversalStrategy System.IEquatable<T>" + "api/Gremlin.Net.Structure.IO.GraphSON.GraphSON2Writer.html": { + "href": "api/Gremlin.Net.Structure.IO.GraphSON.GraphSON2Writer.html", + "title": "Class GraphSON2Writer | Apache TinkerPop - Gremlin.NET API Docs", + "keywords": "Class GraphSON2Writer Handles serialization of GraphSON2 data. Inheritance System.Object GraphSONWriter GraphSON2Writer Inherited Members GraphSONWriter.Serializers GraphSONWriter.WriteObject(Object) GraphSONWriter.ToDict(Object) System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ToString() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Gremlin.Net.Structure.IO.GraphSON Assembly : cs.temp.dll.dll Syntax public class GraphSON2Writer : GraphSONWriter Constructors GraphSON2Writer() Creates a new instance of GraphSON2Writer . Declaration public GraphSON2Writer() GraphSON2Writer(IReadOnlyDictionary<Type, IGraphSONSerializer>) Creates a new instance of GraphSON2Writer . Declaration public GraphSON2Writer(IReadOnlyDictionary<Type, IGraphSONSerializer> customSerializerByType) Parameters Type Name Description System.Co llections.Generic.IReadOnlyDictionary < System.Type , IGraphSONSerializer > customSerializerByType" }, - "api/Gremlin.Net.Process.Traversal.Strategy.Optimization.IdentityRemovalStrategy.html": { - "href": "api/Gremlin.Net.Process.Traversal.Strategy.Optimization.IdentityRemovalStrategy.html", - "title": "Class IdentityRemovalStrategy | Apache TinkerPop - Gremlin.NET API Docs", - "keywords": "Class IdentityRemovalStrategy Looks for Identity() -steps and removes them. Inheritance System.Object AbstractTraversalStrategy IdentityRemovalStrategy Implements ITraversalStrategy System.IEquatable < AbstractTraversalStrategy > Inherited Members AbstractTraversalStrategy.StrategyName AbstractTraversalStrategy.Configuration AbstractTraversalStrategy.Equals(AbstractTraversalStrategy) AbstractTraversalStrategy.Apply<S, E>(ITraversal<S, E>) AbstractTraversalStrategy.ApplyAsync<S, E>(ITraversal<S, E>) AbstractTraversalStrategy.Equals(Object) AbstractTraversalStrategy.GetHashCode() AbstractTraversalStrategy.ToString() System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Gremlin.Net.Process.Traversal.Strategy.Optimization Assembly : cs.temp.dll.dll Syntax public class IdentityRemovalStrategy : AbstractTraversalStrategy, ITraversalStrategy, IEquata ble<AbstractTraversalStrategy> Implements ITraversalStrategy System.IEquatable<T>" + "api/Gremlin.Net.Driver.Messages.RequestMessage.html": { + "href": "api/Gremlin.Net.Driver.Messages.RequestMessage.html", + "title": "Class RequestMessage | Apache TinkerPop - Gremlin.NET API Docs", + "keywords": "Class RequestMessage The model for a request message sent to the server. Inheritance System.Object RequestMessage Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ToString() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Gremlin.Net.Driver.Messages Assembly : cs.temp.dll.dll Syntax public class RequestMessage Properties Arguments Gets arguments of the RequestMessage . Declaration public Dictionary<string, object> Arguments { get; } Property Value Type Description System.Collections.Generic.Dictionary < System.String , System.Object > Operation Gets the name of the operation that should be executed by the Gremlin Server. Declaration public string Operation { get; } Property Value Type Description System.String The name of the \"operation\" to execute based on the available OpProcessor config ured in the Gremlin Server. This defaults to \"eval\" which evaluates a request script. Processor Gets the name of the OpProcessor to utilize. Declaration public string Processor { get; } Property Value Type Description System.String The name of the OpProcessor to utilize. This defaults to an empty string which represents the default OpProcessor for evaluating scripts. RequestId Gets the ID of this request message. Declaration public Guid RequestId { get; } Property Value Type Description System.Guid A UUID representing the unique identification for the request. Methods Build(String) Initializes a RequestMessage.Builder to build a RequestMessage . Declaration public static RequestMessage.Builder Build(string operation) Parameters Type Name Description System.String operation The name of the OpProcessor to utilize. Returns Type Description RequestMessage.Builder A RequestMessage.Builder to build a RequestMessage ." }, - "api/Gremlin.Net.Process.Traversal.Strategy.Optimization.IncidentToAdjacentStrategy.html": { - "href": "api/Gremlin.Net.Process.Traversal.Strategy.Optimization.IncidentToAdjacentStrategy.html", - "title": "Class IncidentToAdjacentStrategy | Apache TinkerPop - Gremlin.NET API Docs", - "keywords": "Class IncidentToAdjacentStrategy Replaces .OutE().InV() with .Out() , .InE().OutV() with In() and .BothE().BothV() with Both() . Inheritance System.Object AbstractTraversalStrategy IncidentToAdjacentStrategy Implements ITraversalStrategy System.IEquatable < AbstractTraversalStrategy > Inherited Members AbstractTraversalStrategy.StrategyName AbstractTraversalStrategy.Configuration AbstractTraversalStrategy.Equals(AbstractTraversalStrategy) AbstractTraversalStrategy.Apply<S, E>(ITraversal<S, E>) AbstractTraversalStrategy.ApplyAsync<S, E>(ITraversal<S, E>) AbstractTraversalStrategy.Equals(Object) AbstractTraversalStrategy.GetHashCode() AbstractTraversalStrategy.ToString() System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Gremlin.Net.Process.Traversal.Strategy.Optimization Assembly : cs.temp.dll.dll Syntax public class IncidentToAdjacentStrate gy : AbstractTraversalStrategy, ITraversalStrategy, IEquatable<AbstractTraversalStrategy> Implements ITraversalStrategy System.IEquatable<T>" + "api/Gremlin.Net.Process.Traversal.Binding.html": { + "href": "api/Gremlin.Net.Process.Traversal.Binding.html", + "title": "Class Binding | Apache TinkerPop - Gremlin.NET API Docs", + "keywords": "Class Binding Associates a variable with a value. Inheritance System.Object Binding Implements System.IEquatable < Binding > Inherited Members System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.MemberwiseClone() System.Object.ToString() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Gremlin.Net.Process.Traversal Assembly : cs.temp.dll.dll Syntax public class Binding : IEquatable<Binding> Constructors Binding(String, Object) Initializes a new instance of the Binding class. Declaration public Binding(string key, object value) Parameters Type Name Description System.String key The key that identifies the Binding . System.Object value The value of the Binding . Properties Key Gets the key that identifies the Binding . Declaration public string Key { get; } Property Value Type Description System.String Value Gets the value of the Binding . Declaration public object Value { get; } Property Value Type Descripti on System.Object Methods Equals(Binding) Declaration public bool Equals(Binding other) Parameters Type Name Description Binding other Returns Type Description System.Boolean Equals(Object) Declaration public override bool Equals(object other) Parameters Type Name Description System.Object other Returns Type Description System.Boolean Overrides System.Object.Equals(System.Object) GetHashCode() Declaration public override int GetHashCode() Returns Type Description System.Int32 Overrides System.Object.GetHashCode() Implements System.IEquatable<T>" + }, + "api/Gremlin.Net.Process.Traversal.Bytecode.html": { + "href": "api/Gremlin.Net.Process.Traversal.Bytecode.html", + "title": "Class Bytecode | Apache TinkerPop - Gremlin.NET API Docs", + "keywords": "Class Bytecode A language agnostic representation of ITraversal mutations. Inheritance System.Object Bytecode Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ToString() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Gremlin.Net.Process.Traversal Assembly : cs.temp.dll.dll Syntax public class Bytecode Remarks Bytecode is simply a list of ordered instructions. Bytecode can be serialized between environments and machines by way of a GraphSON representation. Thus, Gremlin.Net can create bytecode in C# and ship it to Gremlin-Java for evaluation in Java. Constructors Bytecode() Initializes a new instance of the Bytecode class. Declaration public Bytecode() Bytecode(Bytecode) Initializes a new instance of the Bytecode class. Declaration public Bytecode(Bytecode byteCode) Parameters Type Name Desc ription Bytecode byteCode Already existing Bytecode that should be cloned. Properties SourceInstructions Gets the traversal source instructions. Declaration public List<Instruction> SourceInstructions { get; } Property Value Type Description System.Collections.Generic.List < Instruction > StepInstructions Gets the ITraversal instructions. Declaration public List<Instruction> StepInstructions { get; } Property Value Type Description System.Collections.Generic.List < Instruction > Methods AddSource(String, Object[]) Add a traversal source instruction to the bytecode. Declaration public void AddSource(string sourceName, params object[] args) Parameters Type Name Description System.String sourceName The traversal source method name (e.g. withSack()). System.Object [] args The traversal source method arguments. AddStep(String, Object[]) Adds a ITraversal instruction to the bytecode. Declaration public void AddStep(string stepName, params object[] args) Parameters Type Name Description Sy stem.String stepName The traversal method name (e.g. out()). System.Object [] args The traversal method arguments." + }, + "api/Gremlin.Net.Process.Traversal.Pop.html": { + "href": "api/Gremlin.Net.Process.Traversal.Pop.html", + "title": "Class Pop | Apache TinkerPop - Gremlin.NET API Docs", + "keywords": "Class Pop Inheritance System.Object EnumWrapper Pop Implements System.IEquatable < EnumWrapper > Inherited Members EnumWrapper.EnumName EnumWrapper.EnumValue EnumWrapper.Equals(EnumWrapper) EnumWrapper.Equals(Object) EnumWrapper.GetHashCode() System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.MemberwiseClone() System.Object.ToString() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Gremlin.Net.Process.Traversal Assembly : cs.temp.dll.dll Syntax public class Pop : EnumWrapper, IEquatable<EnumWrapper> Properties All Declaration public static Pop All { get; } Property Value Type Description Pop First Declaration public static Pop First { get; } Property Value Type Description Pop Last Declaration public static Pop Last { get; } Property Value Type Description Pop Mixed Declaration public static Pop Mixed { get; } Property Value Type Description Pop Methods GetByValue(String) Gets the Pop enumeration by value . Declaration public static Pop GetByValue(string value) Parameters Type Name Description System.String value Returns Type Description Pop Implements System.IEquatable<T>" + }, + "api/Gremlin.Net.Process.Traversal.ITraversalStrategy.html": { + "href": "api/Gremlin.Net.Process.Traversal.ITraversalStrategy.html", + "title": "Interface ITraversalStrategy | Apache TinkerPop - Gremlin.NET API Docs", + "keywords": "Interface ITraversalStrategy A ITraversalStrategy defines a particular atomic operation for mutating a ITraversal prior to its evaluation. Namespace : Gremlin.Net.Process.Traversal Assembly : cs.temp.dll.dll Syntax public interface ITraversalStrategy Methods Apply<S, E>(ITraversal<S, E>) Applies the strategy to the given ITraversal . Declaration void Apply<S, E>(ITraversal<S, E> traversal) Parameters Type Name Description ITraversal <S, E> traversal The ITraversal the strategy should be applied to. Type Parameters Name Description S E ApplyAsync<S, E>(ITraversal<S, E>) Applies the strategy to the given ITraversal asynchronously. Declaration Task ApplyAsync<S, E>(ITraversal<S, E> traversal) Parameters Type Name Description ITraversal <S, E> traversal The ITraversal the strategy should be applied to. Returns Type Description System.Threading.Tasks.Task Type Parameters Name Description S E" + }, + "api/Gremlin.Net.Process.Traversal.Order.html": { + "href": "api/Gremlin.Net.Process.Traversal.Order.html", + "title": "Class Order | Apache TinkerPop - Gremlin.NET API Docs", + "keywords": "Class Order Inheritance System.Object EnumWrapper Order Implements System.IEquatable < EnumWrapper > IComparator Inherited Members EnumWrapper.EnumName EnumWrapper.EnumValue EnumWrapper.Equals(EnumWrapper) EnumWrapper.Equals(Object) EnumWrapper.GetHashCode() System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.MemberwiseClone() System.Object.ToString() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Gremlin.Net.Process.Traversal Assembly : cs.temp.dll.dll Syntax public class Order : EnumWrapper, IEquatable<EnumWrapper>, IComparator Properties Asc Declaration public static Order Asc { get; } Property Value Type Description Order Decr Declaration public static Order Decr { get; } Property Value Type Description Order Desc Declaration public static Order Desc { get; } Property Value Type Description Order Incr Declaration public static Order Incr { get; } Property Value Type Description Order Shuffle Declarati on public static Order Shuffle { get; } Property Value Type Description Order Methods GetByValue(String) Gets the Order enumeration by value. Declaration public static Order GetByValue(string value) Parameters Type Name Description System.String value Returns Type Description Order Implements System.IEquatable<T> IComparator" + }, + "api/Gremlin.Net.Process.Traversal.Strategy.Optimization.OrderLimitStrategy.html": { + "href": "api/Gremlin.Net.Process.Traversal.Strategy.Optimization.OrderLimitStrategy.html", + "title": "Class OrderLimitStrategy | Apache TinkerPop - Gremlin.NET API Docs", + "keywords": "Class OrderLimitStrategy Inheritance System.Object AbstractTraversalStrategy OrderLimitStrategy Implements ITraversalStrategy System.IEquatable < AbstractTraversalStrategy > Inherited Members AbstractTraversalStrategy.StrategyName AbstractTraversalStrategy.Configuration AbstractTraversalStrategy.Equals(AbstractTraversalStrategy) AbstractTraversalStrategy.Apply<S, E>(ITraversal<S, E>) AbstractTraversalStrategy.ApplyAsync<S, E>(ITraversal<S, E>) AbstractTraversalStrategy.Equals(Object) AbstractTraversalStrategy.GetHashCode() AbstractTraversalStrategy.ToString() System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Gremlin.Net.Process.Traversal.Strategy.Optimization Assembly : cs.temp.dll.dll Syntax public class OrderLimitStrategy : AbstractTraversalStrategy, ITraversalStrategy, IEquatable<AbstractTraversalStrategy> Implements ITraversalStrategy System.IEquatable<T>" }, "api/Gremlin.Net.Process.Traversal.Strategy.Optimization.PathProcessorStrategy.html": { "href": "api/Gremlin.Net.Process.Traversal.Strategy.Optimization.PathProcessorStrategy.html", "title": "Class PathProcessorStrategy | Apache TinkerPop - Gremlin.NET API Docs", "keywords": "Class PathProcessorStrategy Helps to ensure that more traversals meet the local child constraint imposed on OLAP traversals. Inheritance System.Object AbstractTraversalStrategy PathProcessorStrategy Implements ITraversalStrategy System.IEquatable < AbstractTraversalStrategy > Inherited Members AbstractTraversalStrategy.StrategyName AbstractTraversalStrategy.Configuration AbstractTraversalStrategy.Equals(AbstractTraversalStrategy) AbstractTraversalStrategy.Apply<S, E>(ITraversal<S, E>) AbstractTraversalStrategy.ApplyAsync<S, E>(ITraversal<S, E>) AbstractTraversalStrategy.Equals(Object) AbstractTraversalStrategy.GetHashCode() AbstractTraversalStrategy.ToString() System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Gremlin.Net.Process.Traversal.Strategy.Optimization Assembly : cs.temp.dll.dll Syntax public class PathProcessorStrategy : AbstractT raversalStrategy, ITraversalStrategy, IEquatable<AbstractTraversalStrategy> Implements ITraversalStrategy System.IEquatable<T>" }, - "api/Gremlin.Net.Process.Traversal.Strategy.Optimization.PathRetractionStrategy.html": { - "href": "api/Gremlin.Net.Process.Traversal.Strategy.Optimization.PathRetractionStrategy.html", - "title": "Class PathRetractionStrategy | Apache TinkerPop - Gremlin.NET API Docs", - "keywords": "Class PathRetractionStrategy Inheritance System.Object AbstractTraversalStrategy PathRetractionStrategy Implements ITraversalStrategy System.IEquatable < AbstractTraversalStrategy > Inherited Members AbstractTraversalStrategy.StrategyName AbstractTraversalStrategy.Configuration AbstractTraversalStrategy.Equals(AbstractTraversalStrategy) AbstractTraversalStrategy.Apply<S, E>(ITraversal<S, E>) AbstractTraversalStrategy.ApplyAsync<S, E>(ITraversal<S, E>) AbstractTraversalStrategy.Equals(Object) AbstractTraversalStrategy.GetHashCode() AbstractTraversalStrategy.ToString() System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Gremlin.Net.Process.Traversal.Strategy.Optimization Assembly : cs.temp.dll.dll Syntax public class PathRetractionStrategy : AbstractTraversalStrategy, ITraversalStrategy, IEquatable<AbstractTraversalStrategy> Implements ITraver salStrategy System.IEquatable<T>" + "api/Gremlin.Net.Driver.Messages.RequestMessage.Builder.html": { + "href": "api/Gremlin.Net.Driver.Messages.RequestMessage.Builder.html", + "title": "Class RequestMessage.Builder | Apache TinkerPop - Gremlin.NET API Docs", + "keywords": "Class RequestMessage.Builder Allows to build RequestMessage objects. Inheritance System.Object RequestMessage.Builder Inherited Members System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone() System.Object.ToString() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Gremlin.Net.Driver.Messages Assembly : cs.temp.dll.dll Syntax public class Builder Methods AddArgument(String, Object) Adds and argument to the RequestMessage . Declaration public RequestMessage.Builder AddArgument(string key, object value) Parameters Type Name Description System.String key The key of the argument. System.Object value The value of the argument. Returns Type Description RequestMessage.Builder The RequestMessage.Builder . Create() Creates the RequestMessage given the settings provided to the RequestMessage.Builder . Declaration public RequestMessage Creat e() Returns Type Description RequestMessage The built RequestMessage . OverrideRequestId(Guid) Overrides the request identifier with a specified one, otherwise the RequestMessage.Builder will randomly generate a System.Guid . Declaration public RequestMessage.Builder OverrideRequestId(Guid requestId) Parameters Type Name Description System.Guid requestId The request identifier to use. Returns Type Description RequestMessage.Builder The RequestMessage.Builder . Processor(String) If this value is not set in the builder then the Processor defaults to the standard op processor (empty string). Declaration public RequestMessage.Builder Processor(string processor) Parameters Type Name Description System.String processor The name of the processor. Returns Type Description RequestMessage.Builder The RequestMessage.Builder ." + }, + "api/Gremlin.Net.Process.Traversal.Barrier.html": { + "href": "api/Gremlin.Net.Process.Traversal.Barrier.html", + "title": "Class Barrier | Apache TinkerPop - Gremlin.NET API Docs", + "keywords": "Class Barrier Inheritance System.Object EnumWrapper Barrier Implements System.IEquatable < EnumWrapper > IConsumer Inherited Members EnumWrapper.EnumName EnumWrapper.EnumValue EnumWrapper.Equals(EnumWrapper) EnumWrapper.Equals(Object) EnumWrapper.GetHashCode() System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.MemberwiseClone() System.Object.ToString() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Gremlin.Net.Process.Traversal Assembly : cs.temp.dll.dll Syntax public class Barrier : EnumWrapper, IEquatable<EnumWrapper>, IConsumer Properties NormSack Declaration public static Barrier NormSack { get; } Property Value Type Description Barrier Methods GetByValue(String) Gets the Barrier enumeration by value. Declaration public static Barrier GetByValue(string value) Parameters Type Name Description System.String value Returns Type Description Barrier Implements System.IEquatable<T> IConsumer" + }, + "api/Gremlin.Net.Process.Traversal.Strategy.Optimization.IncidentToAdjacentStrategy.html": { + "href": "api/Gremlin.Net.Process.Traversal.Strategy.Optimization.IncidentToAdjacentStrategy.html", + "title": "Class IncidentToAdjacentStrategy | Apache TinkerPop - Gremlin.NET API Docs", + "keywords": "Class IncidentToAdjacentStrategy Replaces .OutE().InV() with .Out() , .InE().OutV() with In() and .BothE().BothV() with Both() . Inheritance System.Object AbstractTraversalStrategy IncidentToAdjacentStrategy Implements ITraversalStrategy System.IEquatable < AbstractTraversalStrategy > Inherited Members AbstractTraversalStrategy.StrategyName AbstractTraversalStrategy.Configuration AbstractTraversalStrategy.Equals(AbstractTraversalStrategy) AbstractTraversalStrategy.Apply<S, E>(ITraversal<S, E>) AbstractTraversalStrategy.ApplyAsync<S, E>(ITraversal<S, E>) AbstractTraversalStrategy.Equals(Object) AbstractTraversalStrategy.GetHashCode() AbstractTraversalStrategy.ToString() System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Gremlin.Net.Process.Traversal.Strategy.Optimization Assembly : cs.temp.dll.dll Syntax public class IncidentToAdjacentStrate gy : AbstractTraversalStrategy, ITraversalStrategy, IEquatable<AbstractTraversalStrategy> Implements ITraversalStrategy System.IEquatable<T>" }, "api/Gremlin.Net.Process.Traversal.Strategy.Verification.ReadOnlyStrategy.html": { "href": "api/Gremlin.Net.Process.Traversal.Strategy.Verification.ReadOnlyStrategy.html", "title": "Class ReadOnlyStrategy | Apache TinkerPop - Gremlin.NET API Docs", "keywords": "Class ReadOnlyStrategy Detects mutating steps and throws an exception if one is found. Inheritance System.Object AbstractTraversalStrategy ReadOnlyStrategy Implements ITraversalStrategy System.IEquatable < AbstractTraversalStrategy > Inherited Members AbstractTraversalStrategy.StrategyName AbstractTraversalStrategy.Configuration AbstractTraversalStrategy.Equals(AbstractTraversalStrategy) AbstractTraversalStrategy.Apply<S, E>(ITraversal<S, E>) AbstractTraversalStrategy.ApplyAsync<S, E>(ITraversal<S, E>) AbstractTraversalStrategy.Equals(Object) AbstractTraversalStrategy.GetHashCode() AbstractTraversalStrategy.ToString() System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Gremlin.Net.Process.Traversal.Strategy.Verification Assembly : cs.temp.dll.dll Syntax public class ReadOnlyStrategy : AbstractTraversalStrategy, ITraversalStrategy, IEquatable <AbstractTraversalStrategy> Implements ITraversalStrategy System.IEquatable<T>" }, - "api/Gremlin.Net.Process.Traversal.Strategy.Optimization.RepeatUnrollStrategy.html": { - "href": "api/Gremlin.Net.Process.Traversal.Strategy.Optimization.RepeatUnrollStrategy.html", - "title": "Class RepeatUnrollStrategy | Apache TinkerPop - Gremlin.NET API Docs", - "keywords": "Class RepeatUnrollStrategy Inheritance System.Object AbstractTraversalStrategy RepeatUnrollStrategy Implements ITraversalStrategy System.IEquatable < AbstractTraversalStrategy > Inherited Members AbstractTraversalStrategy.StrategyName AbstractTraversalStrategy.Configuration AbstractTraversalStrategy.Equals(AbstractTraversalStrategy) AbstractTraversalStrategy.Apply<S, E>(ITraversal<S, E>) AbstractTraversalStrategy.ApplyAsync<S, E>(ITraversal<S, E>) AbstractTraversalStrategy.Equals(Object) AbstractTraversalStrategy.GetHashCode() AbstractTraversalStrategy.ToString() System.Object.Equals(System.Object, System.Object) System.Object.GetType() System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, System.Object) Namespace : Gremlin.Net.Process.Traversal.Strategy.Optimization Assembly : cs.temp.dll.dll Syntax public class RepeatUnrollStrategy : AbstractTraversalStrategy, ITraversalStrategy, IEquatable<AbstractTraversalStrategy> Implements ITraversalStr ategy System.IEquatable<T>" + "api/Gremlin.Net.Process.Traversal.__.html": { + "href": "api/Gremlin.Net.Process.Traversal.__.html", + "title": "Class __ | Apache TinkerPop - Gremlin.NET API Docs",
[... 739 lines stripped ...] Modified: tinkerpop/site/dotnetdocs/3.3.6-SNAPSHOT/manifest.json URL: http://svn.apache.org/viewvc/tinkerpop/site/dotnetdocs/3.3.6-SNAPSHOT/manifest.json?rev=1855344&r1=1855343&r2=1855344&view=diff ============================================================================== --- tinkerpop/site/dotnetdocs/3.3.6-SNAPSHOT/manifest.json (original) +++ tinkerpop/site/dotnetdocs/3.3.6-SNAPSHOT/manifest.json Tue Mar 12 20:05:59 2019 @@ -1,6 +1,6 @@ { "homepages": [], - "source_base_path": "/home/smallette/git/apache/incubator-tinkerpop/gremlin-dotnet/src", + "source_base_path": "/home/smallette/git/apache/tinkerpop/gremlin-dotnet/src", "xrefmap": "xrefmap.yml", "files": [ { @@ -664,7 +664,7 @@ "output": { ".html": { "relative_path": "api/Gremlin.Net.Process.Traversal.Strategy.AbstractTraversalStrategy.html", - "hash": "0mkmZ8YBnaH0YS97d3dfNQ==" + "hash": "sTyFrwGmgVeihYZ+Pwh/zQ==" } }, "is_incremental": false, @@ -792,6 +792,18 @@ }, { "type": "ManagedReference", + "source_relative_path": "obj/api/Gremlin.Net.Process.Traversal.Strategy.Optimization.EarlyLimitStrategy.yml", + "output": { + ".html": { + "relative_path": "api/Gremlin.Net.Process.Traversal.Strategy.Optimization.EarlyLimitStrategy.html", + "hash": "9l329/UnShs1F/fYmG5auw==" + } + }, + "is_incremental": false, + "version": "" + }, + { + "type": "ManagedReference", "source_relative_path": "obj/api/Gremlin.Net.Process.Traversal.Strategy.Optimization.FilterRankingStrategy.yml", "output": { ".html": { @@ -940,7 +952,7 @@ "output": { ".html": { "relative_path": "api/Gremlin.Net.Process.Traversal.Strategy.Optimization.html", - "hash": "uWjkCb8IOjNMw+90OUawPw==" + "hash": "01BPcmHCa/hMRKM4kjcMZA==" } }, "is_incremental": false, @@ -1264,7 +1276,7 @@ "output": { ".html": { "relative_path": "api/toc.html", - "hash": "9psttSyF43lkZ72ywFt+eg==" + "hash": "zPZMaLAbqZ4FLxOUyiBjwg==" } }, "is_incremental": false, @@ -1290,9 +1302,12 @@ "incrementalPhase": "build" }, "processors": { - "TocDocumentProcessor": { - "can_incremental": false, - "details": "Processor TocDocumentProcessor cannot support incremental build because the processor doesn't implement ISupportIncrementalDocumentProcessor interface.", + "ManagedReferenceDocumentProcessor": { + "can_incremental": true, + "incrementalPhase": "build" + }, + "ConceptualDocumentProcessor": { + "can_incremental": true, "incrementalPhase": "build" }, "ResourceDocumentProcessor": { @@ -1300,12 +1315,9 @@ "details": "Processor ResourceDocumentProcessor cannot support incremental build because the processor doesn't implement ISupportIncrementalDocumentProcessor interface.", "incrementalPhase": "build" }, - "ConceptualDocumentProcessor": { - "can_incremental": true, - "incrementalPhase": "build" - }, - "ManagedReferenceDocumentProcessor": { - "can_incremental": true, + "TocDocumentProcessor": { + "can_incremental": false, + "details": "Processor TocDocumentProcessor cannot support incremental build because the processor doesn't implement ISupportIncrementalDocumentProcessor interface.", "incrementalPhase": "build" } } Modified: tinkerpop/site/dotnetdocs/3.3.6-SNAPSHOT/xrefmap.yml URL: http://svn.apache.org/viewvc/tinkerpop/site/dotnetdocs/3.3.6-SNAPSHOT/xrefmap.yml?rev=1855344&r1=1855343&r2=1855344&view=diff ============================================================================== --- tinkerpop/site/dotnetdocs/3.3.6-SNAPSHOT/xrefmap.yml (original) +++ tinkerpop/site/dotnetdocs/3.3.6-SNAPSHOT/xrefmap.yml Tue Mar 12 20:05:59 2019 @@ -7379,6 +7379,12 @@ references: commentId: T:Gremlin.Net.Process.Traversal.Strategy.Optimization.AdjacentToIncidentStrategy fullName: Gremlin.Net.Process.Traversal.Strategy.Optimization.AdjacentToIncidentStrategy nameWithType: AdjacentToIncidentStrategy +- uid: Gremlin.Net.Process.Traversal.Strategy.Optimization.EarlyLimitStrategy + name: EarlyLimitStrategy + href: api/Gremlin.Net.Process.Traversal.Strategy.Optimization.EarlyLimitStrategy.html + commentId: T:Gremlin.Net.Process.Traversal.Strategy.Optimization.EarlyLimitStrategy + fullName: Gremlin.Net.Process.Traversal.Strategy.Optimization.EarlyLimitStrategy + nameWithType: EarlyLimitStrategy - uid: Gremlin.Net.Process.Traversal.Strategy.Optimization.FilterRankingStrategy name: FilterRankingStrategy href: api/Gremlin.Net.Process.Traversal.Strategy.Optimization.FilterRankingStrategy.html Modified: tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/index-all.html URL: http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/index-all.html?rev=1855344&r1=1855343&r2=1855344&view=diff ============================================================================== --- tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/index-all.html (original) +++ tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/index-all.html Tue Mar 12 20:05:59 2019 @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_191) on Tue Jan 08 10:47:32 EST 2019 --> +<!-- Generated by javadoc (1.8.0_191) on Tue Mar 12 16:03:47 EDT 2019 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Index (Apache TinkerPop 3.3.6-SNAPSHOT API)</title> -<meta name="date" content="2019-01-08"> +<meta name="date" content="2019-03-12"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> <script type="text/javascript" src="script.js"></script> </head> @@ -4227,11 +4227,13 @@ <dd> </dd> <dt><span class="memberNameLink"><a href="org/apache/tinkerpop/gremlin/structure/Edge.html#properties-java.lang.String...-">properties(String...)</a></span> - Method in interface org.apache.tinkerpop.gremlin.structure.<a href="org/apache/tinkerpop/gremlin/structure/Edge.html" title="interface in org.apache.tinkerpop.gremlin.structure">Edge</a></dt> <dd> -<div class="block">Get an <a href="http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util"><code>Iterator</code></a> of properties.</div> +<div class="block">Get an <a href="http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util"><code>Iterator</code></a> of properties where the <code>propertyKeys</code> is meant to be a filter on the available + keys.</div> </dd> <dt><span class="memberNameLink"><a href="org/apache/tinkerpop/gremlin/structure/Element.html#properties-java.lang.String...-">properties(String...)</a></span> - Method in interface org.apache.tinkerpop.gremlin.structure.<a href="org/apache/tinkerpop/gremlin/structure/Element.html" title="interface in org.apache.tinkerpop.gremlin.structure">Element</a></dt> <dd> -<div class="block">Get an <a href="http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util"><code>Iterator</code></a> of properties.</div> +<div class="block">Get an <a href="http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util"><code>Iterator</code></a> of properties where the <code>propertyKeys</code> is meant to be a filter on the available + keys.</div> </dd> <dt><span class="memberNameLink"><a href="org/apache/tinkerpop/gremlin/structure/Graph.Features.EdgeFeatures.html#properties--">properties()</a></span> - Method in interface org.apache.tinkerpop.gremlin.structure.<a href="org/apache/tinkerpop/gremlin/structure/Graph.Features.EdgeFeatures.html" title="interface in org.apache.tinkerpop.gremlin.structure">Graph.Features.EdgeFeatures</a></dt> <dd> @@ -4243,11 +4245,13 @@ </dd> <dt><span class="memberNameLink"><a href="org/apache/tinkerpop/gremlin/structure/Vertex.html#properties-java.lang.String...-">properties(String...)</a></span> - Method in interface org.apache.tinkerpop.gremlin.structure.<a href="org/apache/tinkerpop/gremlin/structure/Vertex.html" title="interface in org.apache.tinkerpop.gremlin.structure">Vertex</a></dt> <dd> -<div class="block">Get an <a href="http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util"><code>Iterator</code></a> of properties.</div> +<div class="block">Get an <a href="http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util"><code>Iterator</code></a> of properties where the <code>propertyKeys</code> is meant to be a filter on the available + keys.</div> </dd> <dt><span class="memberNameLink"><a href="org/apache/tinkerpop/gremlin/structure/VertexProperty.html#properties-java.lang.String...-">properties(String...)</a></span> - Method in interface org.apache.tinkerpop.gremlin.structure.<a href="org/apache/tinkerpop/gremlin/structure/VertexProperty.html" title="interface in org.apache.tinkerpop.gremlin.structure">VertexProperty</a></dt> <dd> -<div class="block">Get an <a href="http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util"><code>Iterator</code></a> of properties.</div> +<div class="block">Get an <a href="http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util"><code>Iterator</code></a> of properties where the <code>propertyKeys</code> is meant to be a filter on the available + keys.</div> </dd> <dt><span class="memberNameLink"><a href="org/apache/tinkerpop/gremlin/process/computer/clustering/peerpressure/PeerPressureVertexProgram.Builder.html#property-java.lang.String-">property(String)</a></span> - Method in class org.apache.tinkerpop.gremlin.process.computer.clustering.peerpressure.<a href="org/apache/tinkerpop/gremlin/process/computer/clustering/peerpressure/PeerPressureVertexProgram.Builder.html" title="class in org.apache.tinkerpop.gremlin.process.computer.clustering.peerpressure">PeerPressureVertexProgram.Builder</a></dt> <dd> </dd> Modified: tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/computer/package-tree.html URL: http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/computer/package-tree.html?rev=1855344&r1=1855343&r2=1855344&view=diff ============================================================================== --- tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/computer/package-tree.html (original) +++ tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/computer/package-tree.html Tue Mar 12 20:05:59 2019 @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_191) on Tue Jan 08 10:47:31 EST 2019 --> +<!-- Generated by javadoc (1.8.0_191) on Tue Mar 12 16:03:46 EDT 2019 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>org.apache.tinkerpop.gremlin.process.computer Class Hierarchy (Apache TinkerPop 3.3.6-SNAPSHOT API)</title> -<meta name="date" content="2019-01-08"> +<meta name="date" content="2019-03-12"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> @@ -137,11 +137,11 @@ <ul> <li type="circle">java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Enum</span></a><E> (implements java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a><T>, java.io.<a href="http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>) <ul> -<li type="circle">org.apache.tinkerpop.gremlin.process.computer.<a href="../../../../../../org/apache/tinkerpop/gremlin/process/computer/MapReduce.Stage.html" title="enum in org.apache.tinkerpop.gremlin.process.computer"><span class="typeNameLink">MapReduce.Stage</span></a></li> -<li type="circle">org.apache.tinkerpop.gremlin.process.computer.<a href="../../../../../../org/apache/tinkerpop/gremlin/process/computer/GraphFilter.Legal.html" title="enum in org.apache.tinkerpop.gremlin.process.computer"><span class="typeNameLink">GraphFilter.Legal</span></a></li> -<li type="circle">org.apache.tinkerpop.gremlin.process.computer.<a href="../../../../../../org/apache/tinkerpop/gremlin/process/computer/GraphComputer.ResultGraph.html" title="enum in org.apache.tinkerpop.gremlin.process.computer"><span class="typeNameLink">GraphComputer.ResultGraph</span></a></li> <li type="circle">org.apache.tinkerpop.gremlin.process.computer.<a href="../../../../../../org/apache/tinkerpop/gremlin/process/computer/ProgramPhase.html" title="enum in org.apache.tinkerpop.gremlin.process.computer"><span class="typeNameLink">ProgramPhase</span></a></li> +<li type="circle">org.apache.tinkerpop.gremlin.process.computer.<a href="../../../../../../org/apache/tinkerpop/gremlin/process/computer/GraphComputer.ResultGraph.html" title="enum in org.apache.tinkerpop.gremlin.process.computer"><span class="typeNameLink">GraphComputer.ResultGraph</span></a></li> +<li type="circle">org.apache.tinkerpop.gremlin.process.computer.<a href="../../../../../../org/apache/tinkerpop/gremlin/process/computer/MapReduce.Stage.html" title="enum in org.apache.tinkerpop.gremlin.process.computer"><span class="typeNameLink">MapReduce.Stage</span></a></li> <li type="circle">org.apache.tinkerpop.gremlin.process.computer.<a href="../../../../../../org/apache/tinkerpop/gremlin/process/computer/GraphComputer.Persist.html" title="enum in org.apache.tinkerpop.gremlin.process.computer"><span class="typeNameLink">GraphComputer.Persist</span></a></li> +<li type="circle">org.apache.tinkerpop.gremlin.process.computer.<a href="../../../../../../org/apache/tinkerpop/gremlin/process/computer/GraphFilter.Legal.html" title="enum in org.apache.tinkerpop.gremlin.process.computer"><span class="typeNameLink">GraphFilter.Legal</span></a></li> </ul> </li> </ul> Modified: tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/traversal/Bytecode.Binding.html URL: http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/traversal/Bytecode.Binding.html?rev=1855344&r1=1855343&r2=1855344&view=diff ============================================================================== --- tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/traversal/Bytecode.Binding.html (original) +++ tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/traversal/Bytecode.Binding.html Tue Mar 12 20:05:59 2019 @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_191) on Tue Jan 08 10:47:29 EST 2019 --> +<!-- Generated by javadoc (1.8.0_191) on Tue Mar 12 16:03:44 EDT 2019 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Bytecode.Binding (Apache TinkerPop 3.3.6-SNAPSHOT API)</title> -<meta name="date" content="2019-01-08"> +<meta name="date" content="2019-03-12"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> @@ -163,7 +163,7 @@ implements <a href="http://docs.oracle.c </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>boolean</code></td> -<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/apache/tinkerpop/gremlin/process/traversal/Bytecode.Binding.html#equals-java.lang.Object-">equals</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> object)</code> </td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/apache/tinkerpop/gremlin/process/traversal/Bytecode.Binding.html#equals-java.lang.Object-">equals</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> o)</code> </td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>int</code></td> @@ -260,7 +260,7 @@ implements <a href="http://docs.oracle.c <ul class="blockList"> <li class="blockList"> <h4>equals</h4> -<pre>public boolean equals(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> object)</pre> +<pre>public boolean equals(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> o)</pre> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a></code> in class <code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></dd> Modified: tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/traversal/Bytecode.Instruction.html URL: http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/traversal/Bytecode.Instruction.html?rev=1855344&r1=1855343&r2=1855344&view=diff ============================================================================== --- tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/traversal/Bytecode.Instruction.html (original) +++ tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/traversal/Bytecode.Instruction.html Tue Mar 12 20:05:59 2019 @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_191) on Tue Jan 08 10:47:29 EST 2019 --> +<!-- Generated by javadoc (1.8.0_191) on Tue Mar 12 16:03:44 EDT 2019 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Bytecode.Instruction (Apache TinkerPop 3.3.6-SNAPSHOT API)</title> -<meta name="date" content="2019-01-08"> +<meta name="date" content="2019-03-12"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> @@ -145,7 +145,7 @@ implements <a href="http://docs.oracle.c </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>boolean</code></td> -<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/apache/tinkerpop/gremlin/process/traversal/Bytecode.Instruction.html#equals-java.lang.Object-">equals</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> object)</code> </td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/apache/tinkerpop/gremlin/process/traversal/Bytecode.Instruction.html#equals-java.lang.Object-">equals</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> o)</code> </td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>[]</code></td> @@ -222,7 +222,7 @@ implements <a href="http://docs.oracle.c <ul class="blockList"> <li class="blockList"> <h4>equals</h4> -<pre>public boolean equals(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> object)</pre> +<pre>public boolean equals(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> o)</pre> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a></code> in class <code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></dd> Modified: tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/traversal/Bytecode.html URL: http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/traversal/Bytecode.html?rev=1855344&r1=1855343&r2=1855344&view=diff ============================================================================== --- tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/traversal/Bytecode.html (original) +++ tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/traversal/Bytecode.html Tue Mar 12 20:05:59 2019 @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_191) on Tue Jan 08 10:47:29 EST 2019 --> +<!-- Generated by javadoc (1.8.0_191) on Tue Mar 12 16:03:44 EDT 2019 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Bytecode (Apache TinkerPop 3.3.6-SNAPSHOT API)</title> -<meta name="date" content="2019-01-08"> +<meta name="date" content="2019-03-12"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> @@ -209,7 +209,7 @@ implements <a href="http://docs.oracle.c </tr> <tr id="i3" class="rowColor"> <td class="colFirst"><code>boolean</code></td> -<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/apache/tinkerpop/gremlin/process/traversal/Bytecode.html#equals-java.lang.Object-">equals</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> object)</code> </td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/apache/tinkerpop/gremlin/process/traversal/Bytecode.html#equals-java.lang.Object-">equals</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> o)</code> </td> </tr> <tr id="i4" class="altColor"> <td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>></code></td> @@ -390,7 +390,7 @@ implements <a href="http://docs.oracle.c <ul class="blockList"> <li class="blockList"> <h4>equals</h4> -<pre>public boolean equals(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> object)</pre> +<pre>public boolean equals(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> o)</pre> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a></code> in class <code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></dd> Modified: tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/traversal/Order.html URL: http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/traversal/Order.html?rev=1855344&r1=1855343&r2=1855344&view=diff ============================================================================== --- tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/traversal/Order.html (original) +++ tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/traversal/Order.html Tue Mar 12 20:05:59 2019 @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_191) on Tue Jan 08 10:47:29 EST 2019 --> +<!-- Generated by javadoc (1.8.0_191) on Tue Mar 12 16:03:45 EDT 2019 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Order (Apache TinkerPop 3.3.6-SNAPSHOT API)</title> -<meta name="date" content="2019-01-08"> +<meta name="date" content="2019-03-12"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> @@ -225,7 +225,7 @@ the order they are declared.</div> <!-- --> </a> <h3>Methods inherited from class java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3> -<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Obj ect.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li> +<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.util.Comparator"> Modified: tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/traversal/package-tree.html URL: http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/traversal/package-tree.html?rev=1855344&r1=1855343&r2=1855344&view=diff ============================================================================== --- tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/traversal/package-tree.html (original) +++ tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/traversal/package-tree.html Tue Mar 12 20:05:59 2019 @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_191) on Tue Jan 08 10:47:31 EST 2019 --> +<!-- Generated by javadoc (1.8.0_191) on Tue Mar 12 16:03:46 EDT 2019 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>org.apache.tinkerpop.gremlin.process.traversal Class Hierarchy (Apache TinkerPop 3.3.6-SNAPSHOT API)</title> -<meta name="date" content="2019-01-08"> +<meta name="date" content="2019-03-12"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> @@ -223,12 +223,12 @@ <ul> <li type="circle">org.apache.tinkerpop.gremlin.process.traversal.<a href="../../../../../../org/apache/tinkerpop/gremlin/process/traversal/Compare.html" title="enum in org.apache.tinkerpop.gremlin.process.traversal"><span class="typeNameLink">Compare</span></a> (implements java.util.function.<a href="http://docs.oracle.com/javase/8/docs/api/java/util/function/BiPredicate.html?is-external=true" title="class or interface in java.util.function">BiPredicate</a><T,U>)</li> <li type="circle">org.apache.tinkerpop.gremlin.process.traversal.<a href="../../../../../../org/apache/tinkerpop/gremlin/process/traversal/Contains.html" title="enum in org.apache.tinkerpop.gremlin.process.traversal"><span class="typeNameLink">Contains</span></a> (implements java.util.function.<a href="http://docs.oracle.com/javase/8/docs/api/java/util/function/BiPredicate.html?is-external=true" title="class or interface in java.util.function">BiPredicate</a><T,U>)</li> +<li type="circle">org.apache.tinkerpop.gremlin.process.traversal.<a href="../../../../../../org/apache/tinkerpop/gremlin/process/traversal/Order.html" title="enum in org.apache.tinkerpop.gremlin.process.traversal"><span class="typeNameLink">Order</span></a> (implements java.util.<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Comparator.html?is-external=true" title="class or interface in java.util">Comparator</a><T>)</li> <li type="circle">org.apache.tinkerpop.gremlin.process.traversal.<a href="../../../../../../org/apache/tinkerpop/gremlin/process/traversal/TraversalEngine.Type.html" title="enum in org.apache.tinkerpop.gremlin.process.traversal"><span class="typeNameLink">TraversalEngine.Type</span></a></li> -<li type="circle">org.apache.tinkerpop.gremlin.process.traversal.<a href="../../../../../../org/apache/tinkerpop/gremlin/process/traversal/Operator.html" title="enum in org.apache.tinkerpop.gremlin.process.traversal"><span class="typeNameLink">Operator</span></a> (implements java.util.function.<a href="http://docs.oracle.com/javase/8/docs/api/java/util/function/BinaryOperator.html?is-external=true" title="class or interface in java.util.function">BinaryOperator</a><T>)</li> +<li type="circle">org.apache.tinkerpop.gremlin.process.traversal.<a href="../../../../../../org/apache/tinkerpop/gremlin/process/traversal/Pop.html" title="enum in org.apache.tinkerpop.gremlin.process.traversal"><span class="typeNameLink">Pop</span></a></li> <li type="circle">org.apache.tinkerpop.gremlin.process.traversal.<a href="../../../../../../org/apache/tinkerpop/gremlin/process/traversal/SackFunctions.Barrier.html" title="enum in org.apache.tinkerpop.gremlin.process.traversal"><span class="typeNameLink">SackFunctions.Barrier</span></a> (implements java.util.function.<a href="http://docs.oracle.com/javase/8/docs/api/java/util/function/Consumer.html?is-external=true" title="class or interface in java.util.function">Consumer</a><T>)</li> +<li type="circle">org.apache.tinkerpop.gremlin.process.traversal.<a href="../../../../../../org/apache/tinkerpop/gremlin/process/traversal/Operator.html" title="enum in org.apache.tinkerpop.gremlin.process.traversal"><span class="typeNameLink">Operator</span></a> (implements java.util.function.<a href="http://docs.oracle.com/javase/8/docs/api/java/util/function/BinaryOperator.html?is-external=true" title="class or interface in java.util.function">BinaryOperator</a><T>)</li> <li type="circle">org.apache.tinkerpop.gremlin.process.traversal.<a href="../../../../../../org/apache/tinkerpop/gremlin/process/traversal/Scope.html" title="enum in org.apache.tinkerpop.gremlin.process.traversal"><span class="typeNameLink">Scope</span></a></li> -<li type="circle">org.apache.tinkerpop.gremlin.process.traversal.<a href="../../../../../../org/apache/tinkerpop/gremlin/process/traversal/Pop.html" title="enum in org.apache.tinkerpop.gremlin.process.traversal"><span class="typeNameLink">Pop</span></a></li> -<li type="circle">org.apache.tinkerpop.gremlin.process.traversal.<a href="../../../../../../org/apache/tinkerpop/gremlin/process/traversal/Order.html" title="enum in org.apache.tinkerpop.gremlin.process.traversal"><span class="typeNameLink">Order</span></a> (implements java.util.<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Comparator.html?is-external=true" title="class or interface in java.util">Comparator</a><T>)</li> </ul> </li> </ul> Modified: tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/structure/Edge.html URL: http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/structure/Edge.html?rev=1855344&r1=1855343&r2=1855344&view=diff ============================================================================== --- tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/structure/Edge.html (original) +++ tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/structure/Edge.html Tue Mar 12 20:05:59 2019 @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_191) on Tue Jan 08 10:47:31 EST 2019 --> +<!-- Generated by javadoc (1.8.0_191) on Tue Mar 12 16:03:46 EDT 2019 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Edge (Apache TinkerPop 3.3.6-SNAPSHOT API)</title> -<meta name="date" content="2019-01-08"> +<meta name="date" content="2019-03-12"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -203,7 +203,8 @@ extends <a href="../../../../../org/apac <tr id="i3" class="rowColor"> <td class="colFirst"><code><V> <a href="http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util">Iterator</a><<a href="../../../../../org/apache/tinkerpop/gremlin/structure/Property.html" title="interface in org.apache.tinkerpop.gremlin.structure">Property</a><V>></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/tinkerpop/gremlin/structure/Edge.html#properties-java.lang.String...-">properties</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>... propertyKeys)</code> -<div class="block">Get an <a href="http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util"><code>Iterator</code></a> of properties.</div> +<div class="block">Get an <a href="http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util"><code>Iterator</code></a> of properties where the <code>propertyKeys</code> is meant to be a filter on the available + keys.</div> </td> </tr> <tr id="i4" class="altColor"> @@ -325,7 +326,8 @@ extends <a href="../../../../../org/apac <li class="blockList"> <h4>properties</h4> <pre><V> <a href="http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util">Iterator</a><<a href="../../../../../org/apache/tinkerpop/gremlin/structure/Property.html" title="interface in org.apache.tinkerpop.gremlin.structure">Property</a><V>> properties(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>... propertyKeys)</pre> -<div class="block">Get an <a href="http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util"><code>Iterator</code></a> of properties.</div> +<div class="block">Get an <a href="http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util"><code>Iterator</code></a> of properties where the <code>propertyKeys</code> is meant to be a filter on the available + keys. If no keys are provide then return all the properties.</div> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../../../org/apache/tinkerpop/gremlin/structure/Element.html#properties-java.lang.String...-">properties</a></code> in interface <code><a href="../../../../../org/apache/tinkerpop/gremlin/structure/Element.html" title="interface in org.apache.tinkerpop.gremlin.structure">Element</a></code></dd> Modified: tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/structure/Element.html URL: http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/structure/Element.html?rev=1855344&r1=1855343&r2=1855344&view=diff ============================================================================== --- tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/structure/Element.html (original) +++ tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/structure/Element.html Tue Mar 12 20:05:59 2019 @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_191) on Tue Jan 08 10:47:31 EST 2019 --> +<!-- Generated by javadoc (1.8.0_191) on Tue Mar 12 16:03:46 EDT 2019 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Element (Apache TinkerPop 3.3.6-SNAPSHOT API)</title> -<meta name="date" content="2019-01-08"> +<meta name="date" content="2019-03-12"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -181,7 +181,8 @@ var activeTableTab = "activeTableTab"; <tr id="i4" class="altColor"> <td class="colFirst"><code><V> <a href="http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util">Iterator</a><? extends <a href="../../../../../org/apache/tinkerpop/gremlin/structure/Property.html" title="interface in org.apache.tinkerpop.gremlin.structure">Property</a><V>></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/tinkerpop/gremlin/structure/Element.html#properties-java.lang.String...-">properties</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>... propertyKeys)</code> -<div class="block">Get an <a href="http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util"><code>Iterator</code></a> of properties.</div> +<div class="block">Get an <a href="http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util"><code>Iterator</code></a> of properties where the <code>propertyKeys</code> is meant to be a filter on the available + keys.</div> </td> </tr> <tr id="i5" class="rowColor"> @@ -354,7 +355,8 @@ var activeTableTab = "activeTableTab"; <li class="blockList"> <h4>properties</h4> <pre><V> <a href="http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util">Iterator</a><? extends <a href="../../../../../org/apache/tinkerpop/gremlin/structure/Property.html" title="interface in org.apache.tinkerpop.gremlin.structure">Property</a><V>> properties(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>... propertyKeys)</pre> -<div class="block">Get an <a href="http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util"><code>Iterator</code></a> of properties.</div> +<div class="block">Get an <a href="http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util"><code>Iterator</code></a> of properties where the <code>propertyKeys</code> is meant to be a filter on the available + keys. If no keys are provide then return all the properties.</div> </li> </ul> </li> Modified: tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/structure/Graph.Features.html URL: http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/structure/Graph.Features.html?rev=1855344&r1=1855343&r2=1855344&view=diff ============================================================================== --- tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/structure/Graph.Features.html (original) +++ tinkerpop/site/javadocs/3.3.6-SNAPSHOT/core/org/apache/tinkerpop/gremlin/structure/Graph.Features.html Tue Mar 12 20:05:59 2019 @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (1.8.0_191) on Tue Jan 08 10:47:31 EST 2019 --> +<!-- Generated by javadoc (1.8.0_191) on Tue Mar 12 16:03:46 EDT 2019 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Graph.Features (Apache TinkerPop 3.3.6-SNAPSHOT API)</title> -<meta name="date" content="2019-01-08"> +<meta name="date" content="2019-03-12"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -111,7 +111,13 @@ var activeTableTab = "activeTableTab"; of features return <code>true</code> and it is up to implementers to disable feature they don't support. Users should check features prior to using various functions of TinkerPop to help ensure code portability across implementations. For example, a common usage would be to check if a graph supports transactions prior - to calling the commit method on <a href="../../../../../org/apache/tinkerpop/gremlin/structure/Graph.html#tx--"><code>Graph.tx()</code></a>.</div> + to calling the commit method on <a href="../../../../../org/apache/tinkerpop/gremlin/structure/Graph.html#tx--"><code>Graph.tx()</code></a>. + <p/> + As an additional notice to Graph Providers, feature methods will be used by the test suite to determine which + tests will be ignored and which will be executed, therefore proper setting of these features is essential to + maximizing the amount of testing performed by the suite. Further note, that these methods may be called by the + TinkerPop core code to determine what operations may be appropriately executed which will have impact on + features utilized by users.</div> </li> </ul> </div>
