Serialized Form
-
Package hydra.ast
-
Class hydra.ast.Associativity extends java.lang.Object implements Serializable
-
Class hydra.ast.Associativity.Both extends Associativity implements Serializable
-
Class hydra.ast.Associativity.Left extends Associativity implements Serializable
-
Class hydra.ast.Associativity.None extends Associativity implements Serializable
-
Class hydra.ast.Associativity.Right extends Associativity implements Serializable
-
Class hydra.ast.BlockStyle extends java.lang.Object implements Serializable
-
Serialized Fields
-
indent
Maybe<java.lang.String> indent
An optional indentation string -
newlineAfterContent
java.lang.Boolean newlineAfterContent
Whether to place a newline after the content -
newlineBeforeContent
java.lang.Boolean newlineBeforeContent
Whether to place a newline before the content
-
-
-
Class hydra.ast.BracketExpr extends java.lang.Object implements Serializable
-
Serialized Fields
-
brackets
Brackets brackets
The bracket pair enclosing the expression -
enclosed
Expr enclosed
The expression within the brackets -
style
BlockStyle style
The formatting style for the bracketed block
-
-
-
Class hydra.ast.Brackets extends java.lang.Object implements Serializable
-
Class hydra.ast.Expr extends java.lang.Object implements Serializable
-
Class hydra.ast.Expr.Brackets extends Expr implements Serializable
-
Serialized Fields
-
value
BracketExpr value
-
-
-
Class hydra.ast.Expr.Const extends Expr implements Serializable
-
Serialized Fields
-
value
Symbol value
-
-
-
Class hydra.ast.Expr.Indent extends Expr implements Serializable
-
Serialized Fields
-
value
IndentedExpression value
-
-
-
Class hydra.ast.Expr.Op extends Expr implements Serializable
-
Serialized Fields
-
value
OpExpr value
-
-
-
Class hydra.ast.Expr.Seq extends Expr implements Serializable
-
Serialized Fields
-
value
SeqExpr value
-
-
-
Class hydra.ast.IndentedExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
expr
Expr expr
The expression to be indented -
style
IndentStyle style
The indentation style
-
-
-
Class hydra.ast.IndentStyle extends java.lang.Object implements Serializable
-
Class hydra.ast.IndentStyle.AllLines extends IndentStyle implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ast.IndentStyle.SubsequentLines extends IndentStyle implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ast.Op extends java.lang.Object implements Serializable
-
Serialized Fields
-
associativity
Associativity associativity
The associativity of the operator -
padding
Padding padding
The padding around the operator -
precedence
Precedence precedence
The precedence of the operator -
symbol
Symbol symbol
The operator symbol
-
-
-
Class hydra.ast.OpExpr extends java.lang.Object implements Serializable
-
Class hydra.ast.Padding extends java.lang.Object implements Serializable
-
Class hydra.ast.Precedence extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Integer value
-
-
-
Class hydra.ast.SeqExpr extends java.lang.Object implements Serializable
-
Class hydra.ast.Symbol extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ast.Ws extends java.lang.Object implements Serializable
-
Class hydra.ast.Ws.Break extends Ws implements Serializable
-
Class hydra.ast.Ws.BreakAndIndent extends Ws implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ast.Ws.DoubleBreak extends Ws implements Serializable
-
Class hydra.ast.Ws.None extends Ws implements Serializable
-
Class hydra.ast.Ws.Space extends Ws implements Serializable
-
-
Package hydra.classes
-
Class hydra.classes.TypeClass extends java.lang.Object implements Serializable
-
Class hydra.classes.TypeClass.Equality extends TypeClass implements Serializable
-
Class hydra.classes.TypeClass.Ordering extends TypeClass implements Serializable
-
-
Package hydra.coders
-
Class hydra.coders.AdapterContext extends java.lang.Object implements Serializable
-
Class hydra.coders.CoderDirection extends java.lang.Object implements Serializable
-
Class hydra.coders.CoderDirection.Decode extends CoderDirection implements Serializable
-
Class hydra.coders.CoderDirection.Encode extends CoderDirection implements Serializable
-
Class hydra.coders.Language extends java.lang.Object implements Serializable
-
Serialized Fields
-
constraints
LanguageConstraints constraints
The constraints which characterize the language -
name
LanguageName name
The unique name of the language
-
-
-
Class hydra.coders.LanguageConstraints extends java.lang.Object implements Serializable
-
Serialized Fields
-
eliminationVariants
PersistentSet<EliminationVariant> eliminationVariants
All supported elimination variants -
floatTypes
PersistentSet<FloatType> floatTypes
All supported float types -
functionVariants
PersistentSet<FunctionVariant> functionVariants
All supported function variants -
integerTypes
PersistentSet<IntegerType> integerTypes
All supported integer types -
literalVariants
PersistentSet<LiteralVariant> literalVariants
All supported literal variants -
termVariants
PersistentSet<TermVariant> termVariants
All supported term variants -
types
java.util.function.Function<Type,java.lang.Boolean> types
A logical set of types, as a predicate which tests a type for inclusion -
typeVariants
PersistentSet<TypeVariant> typeVariants
All supported type variants
-
-
-
Class hydra.coders.LanguageName extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.coders.TraversalOrder extends java.lang.Object implements Serializable
-
Class hydra.coders.TraversalOrder.Post extends TraversalOrder implements Serializable
-
Class hydra.coders.TraversalOrder.Pre extends TraversalOrder implements Serializable
-
-
Package hydra.context
-
Class hydra.context.Context extends java.lang.Object implements Serializable
-
Serialized Fields
-
messages
ConsList<java.lang.String> messages
A log of warnings and/or info messages -
other
PersistentMap<Name,Term> other
A map of string keys to arbitrary terms as values, for application-specific use -
trace
ConsList<java.lang.String> trace
A stack of context labels describing the current execution path
-
-
-
Class hydra.context.InContext extends java.lang.Object implements Serializable
-
-
Package hydra.core
-
Class hydra.core.AnnotatedTerm extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotation
PersistentMap<Name,Term> annotation
The annotation as a map from keys to values -
body
Term body
The term being annotated
-
-
-
Class hydra.core.AnnotatedType extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotation
PersistentMap<Name,Term> annotation
The annotation as a map from keys to values -
body
Type body
The type being annotated
-
-
-
Class hydra.core.Application extends java.lang.Object implements Serializable
-
Class hydra.core.ApplicationType extends java.lang.Object implements Serializable
-
Class hydra.core.Binding extends java.lang.Object implements Serializable
-
Serialized Fields
-
name
Name name
The name of the bound variable -
term
Term term
The term to which the variable is bound -
type
Maybe<TypeScheme> type
The optional type of the bound term
-
-
-
Class hydra.core.CaseStatement extends java.lang.Object implements Serializable
-
Class hydra.core.EitherType extends java.lang.Object implements Serializable
-
Class hydra.core.Elimination extends java.lang.Object implements Serializable
-
Class hydra.core.Elimination.Record extends Elimination implements Serializable
-
Serialized Fields
-
value
Projection value
-
-
-
Class hydra.core.Elimination.Union extends Elimination implements Serializable
-
Serialized Fields
-
value
CaseStatement value
-
-
-
Class hydra.core.Elimination.Wrap extends Elimination implements Serializable
-
Serialized Fields
-
value
Name value
-
-
-
Class hydra.core.Field extends java.lang.Object implements Serializable
-
Class hydra.core.FieldType extends java.lang.Object implements Serializable
-
Class hydra.core.FloatType extends java.lang.Object implements Serializable
-
Class hydra.core.FloatType.Bigfloat extends FloatType implements Serializable
-
Class hydra.core.FloatType.Float32 extends FloatType implements Serializable
-
Class hydra.core.FloatType.Float64 extends FloatType implements Serializable
-
Class hydra.core.FloatValue extends java.lang.Object implements Serializable
-
Class hydra.core.FloatValue.Bigfloat extends FloatValue implements Serializable
-
Serialized Fields
-
value
java.math.BigDecimal value
-
-
-
Class hydra.core.FloatValue.Float32 extends FloatValue implements Serializable
-
Serialized Fields
-
value
java.lang.Float value
-
-
-
Class hydra.core.FloatValue.Float64 extends FloatValue implements Serializable
-
Serialized Fields
-
value
java.lang.Double value
-
-
-
Class hydra.core.ForallType extends java.lang.Object implements Serializable
-
Class hydra.core.Function extends java.lang.Object implements Serializable
-
Class hydra.core.Function.Elimination extends Function implements Serializable
-
Serialized Fields
-
value
Elimination value
-
-
-
Class hydra.core.Function.Lambda extends Function implements Serializable
-
Serialized Fields
-
value
Lambda value
-
-
-
Class hydra.core.Function.Primitive extends Function implements Serializable
-
Serialized Fields
-
value
Name value
-
-
-
Class hydra.core.FunctionType extends java.lang.Object implements Serializable
-
Class hydra.core.Injection extends java.lang.Object implements Serializable
-
Class hydra.core.IntegerType extends java.lang.Object implements Serializable
-
Class hydra.core.IntegerType.Bigint extends IntegerType implements Serializable
-
Class hydra.core.IntegerType.Int16 extends IntegerType implements Serializable
-
Class hydra.core.IntegerType.Int32 extends IntegerType implements Serializable
-
Class hydra.core.IntegerType.Int64 extends IntegerType implements Serializable
-
Class hydra.core.IntegerType.Int8 extends IntegerType implements Serializable
-
Class hydra.core.IntegerType.Uint16 extends IntegerType implements Serializable
-
Class hydra.core.IntegerType.Uint32 extends IntegerType implements Serializable
-
Class hydra.core.IntegerType.Uint64 extends IntegerType implements Serializable
-
Class hydra.core.IntegerType.Uint8 extends IntegerType implements Serializable
-
Class hydra.core.IntegerValue extends java.lang.Object implements Serializable
-
Class hydra.core.IntegerValue.Bigint extends IntegerValue implements Serializable
-
Serialized Fields
-
value
java.math.BigInteger value
-
-
-
Class hydra.core.IntegerValue.Int16 extends IntegerValue implements Serializable
-
Serialized Fields
-
value
java.lang.Short value
-
-
-
Class hydra.core.IntegerValue.Int32 extends IntegerValue implements Serializable
-
Serialized Fields
-
value
java.lang.Integer value
-
-
-
Class hydra.core.IntegerValue.Int64 extends IntegerValue implements Serializable
-
Serialized Fields
-
value
java.lang.Long value
-
-
-
Class hydra.core.IntegerValue.Int8 extends IntegerValue implements Serializable
-
Serialized Fields
-
value
java.lang.Byte value
-
-
-
Class hydra.core.IntegerValue.Uint16 extends IntegerValue implements Serializable
-
Serialized Fields
-
value
java.lang.Character value
-
-
-
Class hydra.core.IntegerValue.Uint32 extends IntegerValue implements Serializable
-
Serialized Fields
-
value
java.lang.Long value
-
-
-
Class hydra.core.IntegerValue.Uint64 extends IntegerValue implements Serializable
-
Serialized Fields
-
value
java.math.BigInteger value
-
-
-
Class hydra.core.IntegerValue.Uint8 extends IntegerValue implements Serializable
-
Serialized Fields
-
value
java.lang.Short value
-
-
-
Class hydra.core.Lambda extends java.lang.Object implements Serializable
-
Class hydra.core.Let extends java.lang.Object implements Serializable
-
Class hydra.core.Literal extends java.lang.Object implements Serializable
-
Class hydra.core.Literal.Binary extends Literal implements Serializable
-
Serialized Fields
-
value
byte[] value
-
-
-
Class hydra.core.Literal.Boolean_ extends Literal implements Serializable
-
Serialized Fields
-
value
java.lang.Boolean value
-
-
-
Class hydra.core.Literal.Float_ extends Literal implements Serializable
-
Serialized Fields
-
value
FloatValue value
-
-
-
Class hydra.core.Literal.Integer_ extends Literal implements Serializable
-
Serialized Fields
-
value
IntegerValue value
-
-
-
Class hydra.core.Literal.String_ extends Literal implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.core.LiteralType extends java.lang.Object implements Serializable
-
Class hydra.core.LiteralType.Binary extends LiteralType implements Serializable
-
Class hydra.core.LiteralType.Boolean_ extends LiteralType implements Serializable
-
Class hydra.core.LiteralType.Float_ extends LiteralType implements Serializable
-
Serialized Fields
-
value
FloatType value
-
-
-
Class hydra.core.LiteralType.Integer_ extends LiteralType implements Serializable
-
Serialized Fields
-
value
IntegerType value
-
-
-
Class hydra.core.LiteralType.String_ extends LiteralType implements Serializable
-
Class hydra.core.MapType extends java.lang.Object implements Serializable
-
Class hydra.core.Name extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.core.PairType extends java.lang.Object implements Serializable
-
Class hydra.core.Projection extends java.lang.Object implements Serializable
-
Class hydra.core.Record extends java.lang.Object implements Serializable
-
Class hydra.core.Term extends java.lang.Object implements Serializable
-
Class hydra.core.Term.Annotated extends Term implements Serializable
-
Serialized Fields
-
value
AnnotatedTerm value
-
-
-
Class hydra.core.Term.Application extends Term implements Serializable
-
Serialized Fields
-
value
Application value
-
-
-
Class hydra.core.Term.Either extends Term implements Serializable
-
Class hydra.core.Term.Function extends Term implements Serializable
-
Serialized Fields
-
value
Function value
-
-
-
Class hydra.core.Term.Let extends Term implements Serializable
-
Serialized Fields
-
value
Let value
-
-
-
Class hydra.core.Term.List extends Term implements Serializable
-
Class hydra.core.Term.Literal extends Term implements Serializable
-
Serialized Fields
-
value
Literal value
-
-
-
Class hydra.core.Term.Map extends Term implements Serializable
-
Serialized Fields
-
value
PersistentMap<Term,Term> value
-
-
-
Class hydra.core.Term.Maybe extends Term implements Serializable
-
Class hydra.core.Term.Pair extends Term implements Serializable
-
Class hydra.core.Term.Record extends Term implements Serializable
-
Serialized Fields
-
value
Record value
-
-
-
Class hydra.core.Term.Set extends Term implements Serializable
-
Serialized Fields
-
value
PersistentSet<Term> value
-
-
-
Class hydra.core.Term.TypeApplication extends Term implements Serializable
-
Serialized Fields
-
value
TypeApplicationTerm value
-
-
-
Class hydra.core.Term.TypeLambda extends Term implements Serializable
-
Serialized Fields
-
value
TypeLambda value
-
-
-
Class hydra.core.Term.Union extends Term implements Serializable
-
Serialized Fields
-
value
Injection value
-
-
-
Class hydra.core.Term.Unit extends Term implements Serializable
-
Class hydra.core.Term.Variable extends Term implements Serializable
-
Serialized Fields
-
value
Name value
-
-
-
Class hydra.core.Term.Wrap extends Term implements Serializable
-
Serialized Fields
-
value
WrappedTerm value
-
-
-
Class hydra.core.Type extends java.lang.Object implements Serializable
-
Class hydra.core.Type.Annotated extends Type implements Serializable
-
Serialized Fields
-
value
AnnotatedType value
-
-
-
Class hydra.core.Type.Application extends Type implements Serializable
-
Serialized Fields
-
value
ApplicationType value
-
-
-
Class hydra.core.Type.Either extends Type implements Serializable
-
Serialized Fields
-
value
EitherType value
-
-
-
Class hydra.core.Type.Forall extends Type implements Serializable
-
Serialized Fields
-
value
ForallType value
-
-
-
Class hydra.core.Type.Function extends Type implements Serializable
-
Serialized Fields
-
value
FunctionType value
-
-
-
Class hydra.core.Type.List extends Type implements Serializable
-
Serialized Fields
-
value
Type value
-
-
-
Class hydra.core.Type.Literal extends Type implements Serializable
-
Serialized Fields
-
value
LiteralType value
-
-
-
Class hydra.core.Type.Map extends Type implements Serializable
-
Serialized Fields
-
value
MapType value
-
-
-
Class hydra.core.Type.Maybe extends Type implements Serializable
-
Serialized Fields
-
value
Type value
-
-
-
Class hydra.core.Type.Pair extends Type implements Serializable
-
Serialized Fields
-
value
PairType value
-
-
-
Class hydra.core.Type.Record extends Type implements Serializable
-
Class hydra.core.Type.Set extends Type implements Serializable
-
Serialized Fields
-
value
Type value
-
-
-
Class hydra.core.Type.Union extends Type implements Serializable
-
Class hydra.core.Type.Unit extends Type implements Serializable
-
Class hydra.core.Type.Variable extends Type implements Serializable
-
Serialized Fields
-
value
Name value
-
-
-
Class hydra.core.Type.Void_ extends Type implements Serializable
-
Class hydra.core.Type.Wrap extends Type implements Serializable
-
Serialized Fields
-
value
Type value
-
-
-
Class hydra.core.TypeApplicationTerm extends java.lang.Object implements Serializable
-
Class hydra.core.TypeLambda extends java.lang.Object implements Serializable
-
Class hydra.core.TypeScheme extends java.lang.Object implements Serializable
-
Serialized Fields
-
constraints
Maybe<PersistentMap<Name,TypeVariableMetadata>> constraints
Optional metadata for type variables, including typeclass constraints. The map keys are type variable names. -
type
Type type
The type expression -
variables
ConsList<Name> variables
The free type variables
-
-
-
Class hydra.core.TypeVariableMetadata extends java.lang.Object implements Serializable
-
Serialized Fields
-
classes
PersistentSet<Name> classes
The set of typeclass constraints on this type variable
-
-
-
Class hydra.core.WrappedTerm extends java.lang.Object implements Serializable
-
-
Package hydra.error.checking
-
Class hydra.error.checking.CheckingError extends java.lang.Object implements Serializable
-
Class hydra.error.checking.CheckingError.IncorrectUnification extends CheckingError implements Serializable
-
Serialized Fields
-
value
IncorrectUnificationError value
-
-
-
Class hydra.error.checking.CheckingError.NotAForallType extends CheckingError implements Serializable
-
Serialized Fields
-
value
NotAForallTypeError value
-
-
-
Class hydra.error.checking.CheckingError.NotAFunctionType extends CheckingError implements Serializable
-
Serialized Fields
-
value
NotAFunctionTypeError value
-
-
-
Class hydra.error.checking.CheckingError.TypeArityMismatch extends CheckingError implements Serializable
-
Serialized Fields
-
value
TypeArityMismatchError value
-
-
-
Class hydra.error.checking.CheckingError.TypeMismatch extends CheckingError implements Serializable
-
Serialized Fields
-
value
TypeMismatchError value
-
-
-
Class hydra.error.checking.CheckingError.UnboundTypeVariables extends CheckingError implements Serializable
-
Serialized Fields
-
value
UnboundTypeVariablesError value
-
-
-
Class hydra.error.checking.CheckingError.UnequalTypes extends CheckingError implements Serializable
-
Serialized Fields
-
value
UnequalTypesError value
-
-
-
Class hydra.error.checking.CheckingError.UnsupportedTermVariant extends CheckingError implements Serializable
-
Serialized Fields
-
value
UnsupportedTermVariantError value
-
-
-
Class hydra.error.checking.CheckingError.UntypedLambda extends CheckingError implements Serializable
-
Serialized Fields
-
value
UntypedLambdaError value
-
-
-
Class hydra.error.checking.CheckingError.UntypedLetBinding extends CheckingError implements Serializable
-
Serialized Fields
-
value
UntypedLetBindingError value
-
-
-
Class hydra.error.checking.IncorrectUnificationError extends java.lang.Object implements Serializable
-
Serialized Fields
-
substitution
TypeSubst substitution
The substitution that failed the consistency check
-
-
-
Class hydra.error.checking.NotAForallTypeError extends java.lang.Object implements Serializable
-
Class hydra.error.checking.NotAFunctionTypeError extends java.lang.Object implements Serializable
-
Serialized Fields
-
type
Type type
The actual type encountered
-
-
-
Class hydra.error.checking.TypeArityMismatchError extends java.lang.Object implements Serializable
-
Serialized Fields
-
-
Class hydra.error.checking.TypeMismatchError extends java.lang.Object implements Serializable
-
Class hydra.error.checking.UnboundTypeVariablesError extends java.lang.Object implements Serializable
-
Serialized Fields
-
type
Type type
The type containing the unbound variables -
variables
PersistentSet<Name> variables
The set of unbound type variable names
-
-
-
Class hydra.error.checking.UnequalTypesError extends java.lang.Object implements Serializable
-
Class hydra.error.checking.UnsupportedTermVariantError extends java.lang.Object implements Serializable
-
Serialized Fields
-
termVariant
TermVariant termVariant
The unsupported term variant
-
-
-
Class hydra.error.checking.UntypedLambdaError extends java.lang.Object implements Serializable
-
Class hydra.error.checking.UntypedLetBindingError extends java.lang.Object implements Serializable
-
Serialized Fields
-
binding
Binding binding
The untyped binding
-
-
-
-
Package hydra.error.core
-
Class hydra.error.core.ConstantConditionError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the constant condition within the term -
value
java.lang.Boolean value
The constant boolean value of the condition
-
-
-
Class hydra.error.core.DuplicateBindingError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the duplicate binding within the term -
name
Name name
The duplicated binding name
-
-
-
Class hydra.error.core.DuplicateFieldError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the duplicate field within the term -
name
Name name
The duplicated field name
-
-
-
Class hydra.error.core.DuplicateRecordTypeFieldNamesError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the record type with duplicate fields -
name
Name name
The duplicated field name
-
-
-
Class hydra.error.core.DuplicateUnionTypeFieldNamesError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the union type with duplicate fields -
name
Name name
The duplicated field name
-
-
-
Class hydra.error.core.EmptyCaseStatementError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the empty case statement within the term -
typeName
Name typeName
The name of the union type being matched
-
-
-
Class hydra.error.core.EmptyLetBindingsError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the empty let expression within the term
-
-
-
Class hydra.error.core.EmptyRecordTypeError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the empty record type
-
-
-
Class hydra.error.core.EmptyTermAnnotationError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the empty annotation within the term
-
-
-
Class hydra.error.core.EmptyTypeAnnotationError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the empty annotation
-
-
-
Class hydra.error.core.EmptyTypeNameInTermError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the term with the empty type name
-
-
-
Class hydra.error.core.EmptyUnionTypeError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the empty union type
-
-
-
Class hydra.error.core.InvalidForallParameterNameError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the forall type -
name
Name name
The invalid parameter name
-
-
-
Class hydra.error.core.InvalidLambdaParameterNameError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the lambda within the term -
name
Name name
The invalid parameter name
-
-
-
Class hydra.error.core.InvalidLetBindingNameError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the binding within the term -
name
Name name
The invalid binding name
-
-
-
Class hydra.error.core.InvalidTermError extends java.lang.Object implements Serializable
-
Class hydra.error.core.InvalidTermError.ConstantCondition extends InvalidTermError implements Serializable
-
Serialized Fields
-
value
ConstantConditionError value
-
-
-
Class hydra.error.core.InvalidTermError.DuplicateBinding extends InvalidTermError implements Serializable
-
Serialized Fields
-
value
DuplicateBindingError value
-
-
-
Class hydra.error.core.InvalidTermError.DuplicateField extends InvalidTermError implements Serializable
-
Serialized Fields
-
value
DuplicateFieldError value
-
-
-
Class hydra.error.core.InvalidTermError.EmptyCaseStatement extends InvalidTermError implements Serializable
-
Serialized Fields
-
value
EmptyCaseStatementError value
-
-
-
Class hydra.error.core.InvalidTermError.EmptyLetBindings extends InvalidTermError implements Serializable
-
Serialized Fields
-
value
EmptyLetBindingsError value
-
-
-
Class hydra.error.core.InvalidTermError.EmptyTermAnnotation extends InvalidTermError implements Serializable
-
Serialized Fields
-
value
EmptyTermAnnotationError value
-
-
-
Class hydra.error.core.InvalidTermError.EmptyTypeNameInTerm extends InvalidTermError implements Serializable
-
Serialized Fields
-
value
EmptyTypeNameInTermError value
-
-
-
Class hydra.error.core.InvalidTermError.InvalidLambdaParameterName extends InvalidTermError implements Serializable
-
Serialized Fields
-
value
InvalidLambdaParameterNameError value
-
-
-
Class hydra.error.core.InvalidTermError.InvalidLetBindingName extends InvalidTermError implements Serializable
-
Serialized Fields
-
value
InvalidLetBindingNameError value
-
-
-
Class hydra.error.core.InvalidTermError.InvalidTypeLambdaParameterName extends InvalidTermError implements Serializable
-
Serialized Fields
-
value
InvalidTypeLambdaParameterNameError value
-
-
-
Class hydra.error.core.InvalidTermError.NestedTermAnnotation extends InvalidTermError implements Serializable
-
Serialized Fields
-
value
NestedTermAnnotationError value
-
-
-
Class hydra.error.core.InvalidTermError.RedundantWrapUnwrap extends InvalidTermError implements Serializable
-
Serialized Fields
-
value
RedundantWrapUnwrapError value
-
-
-
Class hydra.error.core.InvalidTermError.SelfApplication extends InvalidTermError implements Serializable
-
Serialized Fields
-
value
SelfApplicationError value
-
-
-
Class hydra.error.core.InvalidTermError.TermVariableShadowing extends InvalidTermError implements Serializable
-
Serialized Fields
-
value
TermVariableShadowingError value
-
-
-
Class hydra.error.core.InvalidTermError.TypeVariableShadowingInTypeLambda extends InvalidTermError implements Serializable
-
Serialized Fields
-
value
TypeVariableShadowingInTypeLambdaError value
-
-
-
Class hydra.error.core.InvalidTermError.UndefinedTermVariable extends InvalidTermError implements Serializable
-
Serialized Fields
-
value
UndefinedTermVariableError value
-
-
-
Class hydra.error.core.InvalidTermError.UndefinedTypeVariableInBindingType extends InvalidTermError implements Serializable
-
Serialized Fields
-
value
UndefinedTypeVariableInBindingTypeError value
-
-
-
Class hydra.error.core.InvalidTermError.UndefinedTypeVariableInLambdaDomain extends InvalidTermError implements Serializable
-
Serialized Fields
-
value
UndefinedTypeVariableInLambdaDomainError value
-
-
-
Class hydra.error.core.InvalidTermError.UndefinedTypeVariableInTypeApplication extends InvalidTermError implements Serializable
-
Serialized Fields
-
value
UndefinedTypeVariableInTypeApplicationError value
-
-
-
Class hydra.error.core.InvalidTermError.UnknownPrimitiveName extends InvalidTermError implements Serializable
-
Serialized Fields
-
value
UnknownPrimitiveNameError value
-
-
-
Class hydra.error.core.InvalidTermError.UnnecessaryIdentityApplication extends InvalidTermError implements Serializable
-
Serialized Fields
-
value
UnnecessaryIdentityApplicationError value
-
-
-
Class hydra.error.core.InvalidTermError.UntypedTermVariable extends InvalidTermError implements Serializable
-
Serialized Fields
-
value
UntypedTermVariableError value
-
-
-
Class hydra.error.core.InvalidTypeError extends java.lang.Object implements Serializable
-
Class hydra.error.core.InvalidTypeError.DuplicateRecordTypeFieldNames extends InvalidTypeError implements Serializable
-
Serialized Fields
-
value
DuplicateRecordTypeFieldNamesError value
-
-
-
Class hydra.error.core.InvalidTypeError.DuplicateUnionTypeFieldNames extends InvalidTypeError implements Serializable
-
Serialized Fields
-
value
DuplicateUnionTypeFieldNamesError value
-
-
-
Class hydra.error.core.InvalidTypeError.EmptyRecordType extends InvalidTypeError implements Serializable
-
Serialized Fields
-
value
EmptyRecordTypeError value
-
-
-
Class hydra.error.core.InvalidTypeError.EmptyTypeAnnotation extends InvalidTypeError implements Serializable
-
Serialized Fields
-
value
EmptyTypeAnnotationError value
-
-
-
Class hydra.error.core.InvalidTypeError.EmptyUnionType extends InvalidTypeError implements Serializable
-
Serialized Fields
-
value
EmptyUnionTypeError value
-
-
-
Class hydra.error.core.InvalidTypeError.InvalidForallParameterName extends InvalidTypeError implements Serializable
-
Serialized Fields
-
value
InvalidForallParameterNameError value
-
-
-
Class hydra.error.core.InvalidTypeError.InvalidTypeSchemeVariableName extends InvalidTypeError implements Serializable
-
Serialized Fields
-
value
InvalidTypeSchemeVariableNameError value
-
-
-
Class hydra.error.core.InvalidTypeError.NestedTypeAnnotation extends InvalidTypeError implements Serializable
-
Serialized Fields
-
value
NestedTypeAnnotationError value
-
-
-
Class hydra.error.core.InvalidTypeError.NonComparableMapKeyType extends InvalidTypeError implements Serializable
-
Serialized Fields
-
value
NonComparableMapKeyTypeError value
-
-
-
Class hydra.error.core.InvalidTypeError.NonComparableSetElementType extends InvalidTypeError implements Serializable
-
Serialized Fields
-
value
NonComparableSetElementTypeError value
-
-
-
Class hydra.error.core.InvalidTypeError.SingleVariantUnion extends InvalidTypeError implements Serializable
-
Serialized Fields
-
value
SingleVariantUnionError value
-
-
-
Class hydra.error.core.InvalidTypeError.TypeVariableShadowingInForall extends InvalidTypeError implements Serializable
-
Serialized Fields
-
value
TypeVariableShadowingInForallError value
-
-
-
Class hydra.error.core.InvalidTypeError.UndefinedTypeVariable extends InvalidTypeError implements Serializable
-
Serialized Fields
-
value
UndefinedTypeVariableError value
-
-
-
Class hydra.error.core.InvalidTypeError.VoidInNonBottomPosition extends InvalidTypeError implements Serializable
-
Serialized Fields
-
value
VoidInNonBottomPositionError value
-
-
-
Class hydra.error.core.InvalidTypeLambdaParameterNameError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the type lambda within the term -
name
Name name
The invalid type lambda parameter name
-
-
-
Class hydra.error.core.InvalidTypeSchemeVariableNameError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the type scheme -
name
Name name
The invalid variable name
-
-
-
Class hydra.error.core.NestedTermAnnotationError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the outer annotation within the term
-
-
-
Class hydra.error.core.NestedTypeAnnotationError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the outer annotation
-
-
-
Class hydra.error.core.NonComparableMapKeyTypeError extends java.lang.Object implements Serializable
-
Serialized Fields
-
keyType
Type keyType
The non-comparable key type -
location
SubtermPath location
The path to the map type
-
-
-
Class hydra.error.core.NonComparableSetElementTypeError extends java.lang.Object implements Serializable
-
Serialized Fields
-
elementType
Type elementType
The non-comparable element type -
location
SubtermPath location
The path to the set type
-
-
-
Class hydra.error.core.RedundantWrapUnwrapError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the redundant wrap/unwrap within the term -
typeName
Name typeName
The type name of the wrapper
-
-
-
Class hydra.error.core.SelfApplicationError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the self-application within the term -
name
Name name
The name of the variable applied to itself
-
-
-
Class hydra.error.core.SingleVariantUnionError extends java.lang.Object implements Serializable
-
Serialized Fields
-
fieldName
Name fieldName
The name of the single field -
location
SubtermPath location
The path to the single-variant union type
-
-
-
Class hydra.error.core.TermVariableShadowingError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the shadowing binding within the term -
name
Name name
The name of the shadowed variable
-
-
-
Class hydra.error.core.TypeVariableShadowingInForallError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the shadowing forall type -
name
Name name
The name of the shadowed type variable
-
-
-
Class hydra.error.core.TypeVariableShadowingInTypeLambdaError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the type lambda within the term -
name
Name name
The name of the shadowed type variable
-
-
-
Class hydra.error.core.UndefinedFieldError extends java.lang.Object implements Serializable
-
Class hydra.error.core.UndefinedTermVariableError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the undefined variable within the term -
name
Name name
The name of the undefined variable
-
-
-
Class hydra.error.core.UndefinedTypeVariableError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the undefined type variable -
name
Name name
The name of the undefined type variable
-
-
-
Class hydra.error.core.UndefinedTypeVariableInBindingTypeError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the binding within the term -
name
Name name
The name of the undefined type variable
-
-
-
Class hydra.error.core.UndefinedTypeVariableInLambdaDomainError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the lambda within the term -
name
Name name
The name of the undefined type variable
-
-
-
Class hydra.error.core.UndefinedTypeVariableInTypeApplicationError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the type application within the term -
name
Name name
The name of the undefined type variable
-
-
-
Class hydra.error.core.UnexpectedTermVariantError extends java.lang.Object implements Serializable
-
Serialized Fields
-
actualTerm
Term actualTerm
The actual term that was encountered -
expectedVariant
TermVariant expectedVariant
The expected term variant
-
-
-
Class hydra.error.core.UnexpectedTypeVariantError extends java.lang.Object implements Serializable
-
Serialized Fields
-
actualType
Type actualType
The actual type that was encountered -
expectedVariant
TypeVariant expectedVariant
The expected type variant
-
-
-
Class hydra.error.core.UnknownPrimitiveNameError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the primitive reference within the term -
name
Name name
The unknown primitive name
-
-
-
Class hydra.error.core.UnnecessaryIdentityApplicationError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the identity application within the term
-
-
-
Class hydra.error.core.UntypedTermVariableError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the untyped variable within the term -
name
Name name
The name of the untyped variable
-
-
-
Class hydra.error.core.VoidInNonBottomPositionError extends java.lang.Object implements Serializable
-
Serialized Fields
-
location
SubtermPath location
The path to the void type in a non-bottom position
-
-
-
-
Package hydra.error.packaging
-
Class hydra.error.packaging.ConflictingModuleNamespaceError extends java.lang.Object implements Serializable
-
Class hydra.error.packaging.ConflictingVariantNameError extends java.lang.Object implements Serializable
-
Serialized Fields
-
conflictingName
Name conflictingName
The name of the other type definition that conflicts with the generated constructor name -
namespace
Namespace namespace
The namespace of the module containing the conflict -
typeName
Name typeName
The name of the union type -
variantName
Name variantName
The name of the variant field causing the conflict
-
-
-
Class hydra.error.packaging.DefinitionNotInModuleNamespaceError extends java.lang.Object implements Serializable
-
Class hydra.error.packaging.DuplicateDefinitionNameError extends java.lang.Object implements Serializable
-
Class hydra.error.packaging.DuplicateModuleNamespaceError extends java.lang.Object implements Serializable
-
Serialized Fields
-
namespace
Namespace namespace
The duplicated module namespace
-
-
-
Class hydra.error.packaging.InvalidModuleError extends java.lang.Object implements Serializable
-
Class hydra.error.packaging.InvalidModuleError.ConflictingVariantName extends InvalidModuleError implements Serializable
-
Serialized Fields
-
value
ConflictingVariantNameError value
-
-
-
Class hydra.error.packaging.InvalidModuleError.DefinitionNotInModuleNamespace extends InvalidModuleError implements Serializable
-
Serialized Fields
-
value
DefinitionNotInModuleNamespaceError value
-
-
-
Class hydra.error.packaging.InvalidModuleError.DuplicateDefinitionName extends InvalidModuleError implements Serializable
-
Serialized Fields
-
value
DuplicateDefinitionNameError value
-
-
-
Class hydra.error.packaging.InvalidPackageError extends java.lang.Object implements Serializable
-
Class hydra.error.packaging.InvalidPackageError.ConflictingModuleNamespace extends InvalidPackageError implements Serializable
-
Serialized Fields
-
value
ConflictingModuleNamespaceError value
-
-
-
Class hydra.error.packaging.InvalidPackageError.DuplicateModuleNamespace extends InvalidPackageError implements Serializable
-
Serialized Fields
-
value
DuplicateModuleNamespaceError value
-
-
-
Class hydra.error.packaging.InvalidPackageError.InvalidModule extends InvalidPackageError implements Serializable
-
Serialized Fields
-
value
InvalidModuleError value
-
-
-
-
Package hydra.errors
-
Class hydra.errors.DecodingError extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.errors.Error_ extends java.lang.Object implements Serializable
-
Class hydra.errors.Error_.Checking extends Error_ implements Serializable
-
Serialized Fields
-
value
CheckingError value
-
-
-
Class hydra.errors.Error_.Decoding extends Error_ implements Serializable
-
Serialized Fields
-
value
DecodingError value
-
-
-
Class hydra.errors.Error_.DuplicateBinding extends Error_ implements Serializable
-
Serialized Fields
-
value
DuplicateBindingError value
-
-
-
Class hydra.errors.Error_.DuplicateField extends Error_ implements Serializable
-
Serialized Fields
-
value
DuplicateFieldError value
-
-
-
Class hydra.errors.Error_.Other extends Error_ implements Serializable
-
Serialized Fields
-
value
OtherError value
-
-
-
Class hydra.errors.Error_.UndefinedField extends Error_ implements Serializable
-
Serialized Fields
-
value
UndefinedFieldError value
-
-
-
Class hydra.errors.Error_.UndefinedTermVariable extends Error_ implements Serializable
-
Serialized Fields
-
value
UndefinedTermVariableError value
-
-
-
Class hydra.errors.Error_.UnexpectedTermVariant extends Error_ implements Serializable
-
Serialized Fields
-
value
UnexpectedTermVariantError value
-
-
-
Class hydra.errors.Error_.UnexpectedTypeVariant extends Error_ implements Serializable
-
Serialized Fields
-
value
UnexpectedTypeVariantError value
-
-
-
Class hydra.errors.Error_.Unification extends Error_ implements Serializable
-
Serialized Fields
-
value
UnificationError value
-
-
-
Class hydra.errors.Error_.UntypedTermVariable extends Error_ implements Serializable
-
Serialized Fields
-
value
UntypedTermVariableError value
-
-
-
Class hydra.errors.OtherError extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.errors.UnificationError extends java.lang.Object implements Serializable
-
-
Package hydra.ext.cypher.features
-
Class hydra.ext.cypher.features.AggregateFunctionFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
avg
java.lang.Boolean avg
The avg() function / AVG. Returns the average of a set of DURATION values.; Returns the average of a set of FLOAT values.; Returns the average of a set of INTEGER values. -
collect
java.lang.Boolean collect
The collect() function / COLLECT. Returns a list containing the values returned by an expression. -
count
java.lang.Boolean count
The count() function / COUNT. Returns the number of values or rows. -
max
java.lang.Boolean max
The max() function / MAX. Returns the maximum value in a set of values. -
min
java.lang.Boolean min
The min() function / MIN. Returns the minimum value in a set of values. -
percentileCont
java.lang.Boolean percentileCont
The percentileCont() function. Returns the percentile of a value over a group using linear interpolation. -
percentileDisc
java.lang.Boolean percentileDisc
The percentileDisc() function. Returns the nearest FLOAT value to the given percentile over a group using a rounding method.; Returns the nearest INTEGER value to the given percentile over a group using a rounding method. -
stdev
java.lang.Boolean stdev
The stdev() function. Returns the standard deviation for the given value over a group for a sample of a population. -
stdevp
java.lang.Boolean stdevp
The stdevp() function. Returns the standard deviation for the given value over a group for an entire population. -
sum
java.lang.Boolean sum
The sum() function / SUM. Returns the sum of a set of DURATION values.; Returns the sum of a set of FLOAT values.; Returns the sum of a set of INTEGER values.
-
-
-
Class hydra.ext.cypher.features.ArithmeticFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
divide
java.lang.Boolean divide
The / operator -
minus
java.lang.Boolean minus
The - operator -
modulus
java.lang.Boolean modulus
The % operator -
multiply
java.lang.Boolean multiply
The * operator -
plus
java.lang.Boolean plus
The + operator -
powerOf
java.lang.Boolean powerOf
The ^ operator
-
-
-
Class hydra.ext.cypher.features.AtomFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
caseExpression
java.lang.Boolean caseExpression
CASE expressions -
count
java.lang.Boolean count
The COUNT (*) expression -
existentialSubquery
java.lang.Boolean existentialSubquery
Existential subqueries -
functionInvocation
java.lang.Boolean functionInvocation
Function invocation -
parameter
java.lang.Boolean parameter
Parameter expressions -
patternComprehension
java.lang.Boolean patternComprehension
Pattern comprehensions -
patternPredicate
java.lang.Boolean patternPredicate
Relationship patterns as subexpressions -
variable
java.lang.Boolean variable
Variable expressions (note: included by most if not all implementations).
-
-
-
Class hydra.ext.cypher.features.ComparisonFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
equal
java.lang.Boolean equal
The = comparison operator -
greaterThan
java.lang.Boolean greaterThan
The > comparison operator -
greaterThanOrEqual
java.lang.Boolean greaterThanOrEqual
The >= comparison operator -
lessThan
java.lang.Boolean lessThan
The < comparison operator -
lessThanOrEqual
java.lang.Boolean lessThanOrEqual
The <= comparison operator -
notEqual
java.lang.Boolean notEqual
The <> comparison operator
-
-
-
Class hydra.ext.cypher.features.CypherFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
arithmetic
ArithmeticFeatures arithmetic
Arithmetic operations -
atom
AtomFeatures atom
Various kinds of atomic expressions -
comparison
ComparisonFeatures comparison
Comparison operators and functions -
delete
DeleteFeatures delete
Delete operations -
function
FunctionFeatures function
Standard Cypher functions -
list
ListFeatures list
List functionality -
literal
LiteralFeatures literal
Various types of literal values -
logical
LogicalFeatures logical
Logical operations -
match
MatchFeatures match
Match queries -
merge
MergeFeatures merge
Merge operations -
nodePattern
NodePatternFeatures nodePattern
Node patterns -
null_
NullFeatures null_
IS NULL / IS NOT NULL checks -
path
PathFeatures path
Path functions only found in OpenCypher -
procedureCall
ProcedureCallFeatures procedureCall
Procedure calls -
projection
ProjectionFeatures projection
Projections -
quantifier
QuantifierFeatures quantifier
Quantifier expressions -
rangeLiteral
RangeLiteralFeatures rangeLiteral
Range literals within relationship patterns -
reading
ReadingFeatures reading
Specific syntax related to reading data from the graph. -
relationshipDirection
RelationshipDirectionFeatures relationshipDirection
Relationship directions / arrow patterns -
relationshipPattern
RelationshipPatternFeatures relationshipPattern
Relationship patterns -
remove
RemoveFeatures remove
REMOVE operations -
set
SetFeatures set
Set definitions -
string
StringFeatures string
String functions/keywords only found in OpenCypher -
updating
UpdatingFeatures updating
Specific syntax related to updating data in the graph
-
-
-
Class hydra.ext.cypher.features.DatabaseFunctionFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
dbNameFromElementId
java.lang.Boolean dbNameFromElementId
The db.nameFromElementId() function. Resolves the database name from the given element id. Introduced in 5.12.
-
-
-
Class hydra.ext.cypher.features.DeleteFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
delete
java.lang.Boolean delete
The basic DELETE clause -
detachDelete
java.lang.Boolean detachDelete
The DETACH DELETE clause
-
-
-
Class hydra.ext.cypher.features.FunctionFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
aggregateFunction
AggregateFunctionFeatures aggregateFunction
Aggregate functions -
databaseFunction
DatabaseFunctionFeatures databaseFunction
Database functions -
genAIFunction
GenAIFunctionFeatures genAIFunction
GenAI functions -
graphFunction
GraphFunctionFeatures graphFunction
Graph functions -
listFunction
ListFunctionFeatures listFunction
List functions -
loadCSVFunction
LoadCSVFunctionFeatures loadCSVFunction
Load CSV functions -
logarithmicFunction
LogarithmicFunctionFeatures logarithmicFunction
Logarithmic functions -
numericFunction
NumericFunctionFeatures numericFunction
Numeric functions -
predicateFunction
PredicateFunctionFeatures predicateFunction
Predicate functions -
scalarFunction
ScalarFunctionFeatures scalarFunction
Scalar functions -
spatialFunction
SpatialFunctionFeatures spatialFunction
Spatial functions -
stringFunction
StringFunctionFeatures stringFunction
String functions -
temporalDurationFunction
TemporalDurationFunctionFeatures temporalDurationFunction
Temporal duration functions -
temporalInstantFunction
TemporalInstantFunctionFeatures temporalInstantFunction
Temporal instant functions -
trigonometricFunction
TrigonometricFunctionFeatures trigonometricFunction
Trigonometric functions -
vectorFunction
VectorFunctionFeatures vectorFunction
Vector functions
-
-
-
Class hydra.ext.cypher.features.GenAIFunctionFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
genaiVectorEncode
java.lang.Boolean genaiVectorEncode
The genai.vector.encode() function. Encode a given resource as a vector using the named provider. Introduced in 5.17.
-
-
-
Class hydra.ext.cypher.features.GraphFunctionFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
graphByElementId
java.lang.Boolean graphByElementId
The graph.byElementId() function. Resolves the constituent graph to which a given element id belongs. Introduced in 5.13. -
graphByName
java.lang.Boolean graphByName
The graph.byName() function. Resolves a constituent graph by name. -
graphNames
java.lang.Boolean graphNames
The graph.names() function. Returns a list containing the names of all graphs in the current composite database. -
graphPropertiesByName
java.lang.Boolean graphPropertiesByName
The graph.propertiesByName() function. Returns a map containing the properties associated with the given graph.
-
-
-
Class hydra.ext.cypher.features.ListFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
listComprehension
java.lang.Boolean listComprehension
Basic list comprehensions -
listRange
java.lang.Boolean listRange
List range comprehensions (e.g. [1..10])
-
-
-
Class hydra.ext.cypher.features.ListFunctionFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
keys
java.lang.Boolean keys
The keys() function. Returns a LIST<STRING> containing the STRING representations for all the property names of a MAP.; Returns a LIST<STRING> containing the STRING representations for all the property names of a NODE.; Returns a LIST<STRING> containing the STRING representations for all the property names of a RELATIONSHIP. -
labels
java.lang.Boolean labels
The labels() function. Returns a LIST<STRING> containing the STRING representations for all the labels of a NODE. -
nodes
java.lang.Boolean nodes
The nodes() function. Returns a LIST<NODE> containing all the NODE values in a PATH. -
range
java.lang.Boolean range
The range() function. Returns a LIST<INTEGER> comprising all INTEGER values within a specified range.; Returns a LIST<INTEGER> comprising all INTEGER values within a specified range created with step length. -
reduce
java.lang.Boolean reduce
The reduce() function. Runs an expression against individual elements of a LIST<ANY>, storing the result of the expression in an accumulator. -
relationships
java.lang.Boolean relationships
The relationships() function. Returns a LIST<RELATIONSHIP> containing all the RELATIONSHIP values in a PATH. -
reverse
java.lang.Boolean reverse
The reverse() function. Returns a LIST<ANY> in which the order of all elements in the given LIST<ANY> have been reversed. -
tail
java.lang.Boolean tail
The tail() function. Returns all but the first element in a LIST<ANY>. -
toBooleanList
java.lang.Boolean toBooleanList
The toBooleanList() function. Converts a LIST<ANY> of values to a LIST<BOOLEAN> values. If any values are not convertible to BOOLEAN they will be null in the LIST<BOOLEAN> returned. -
toFloatList
java.lang.Boolean toFloatList
The toFloatList() function. Converts a LIST<ANY> to a LIST<FLOAT> values. If any values are not convertible to FLOAT they will be null in the LIST<FLOAT> returned. -
toIntegerList
java.lang.Boolean toIntegerList
The toIntegerList() function. Converts a LIST<ANY> to a LIST<INTEGER> values. If any values are not convertible to INTEGER they will be null in the LIST<INTEGER> returned. -
toStringList
java.lang.Boolean toStringList
The toStringList() function. Converts a LIST<ANY> to a LIST<STRING> values. If any values are not convertible to STRING they will be null in the LIST<STRING> returned.
-
-
-
Class hydra.ext.cypher.features.LiteralFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
boolean_
java.lang.Boolean boolean_
Boolean literals (note: included by most if not all implementations). -
double_
java.lang.Boolean double_
Double-precision floating-point literals -
integer
java.lang.Boolean integer
Integer literals -
list
java.lang.Boolean list
List literals -
map
java.lang.Boolean map
Map literals -
null_
java.lang.Boolean null_
The NULL literal -
string
java.lang.Boolean string
String literals (note: included by most if not all implementations).
-
-
-
Class hydra.ext.cypher.features.LoadCSVFunctionFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
file
java.lang.Boolean file
The file() function. Returns the absolute path of the file that LOAD CSV is using. -
linenumber
java.lang.Boolean linenumber
The linenumber() function. Returns the line number that LOAD CSV is currently using.
-
-
-
Class hydra.ext.cypher.features.LogarithmicFunctionFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
e
java.lang.Boolean e
The e() function. Returns the base of the natural logarithm, e. -
exp
java.lang.Boolean exp
The exp() function. Returns e^n, where e is the base of the natural logarithm, and n is the value of the argument expression. -
log
java.lang.Boolean log
The log() function. Returns the natural logarithm of a FLOAT. -
log10
java.lang.Boolean log10
The log10() function. Returns the common logarithm (base 10) of a FLOAT. -
sqrt
java.lang.Boolean sqrt
The sqrt() function. Returns the square root of a FLOAT.
-
-
-
Class hydra.ext.cypher.features.LogicalFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
and
java.lang.Boolean and
The AND operator -
not
java.lang.Boolean not
The NOT operator -
or
java.lang.Boolean or
The OR operator -
xor
java.lang.Boolean xor
The XOR operator
-
-
-
Class hydra.ext.cypher.features.MatchFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
match
java.lang.Boolean match
The basic (non-optional) MATCH clause -
optionalMatch
java.lang.Boolean optionalMatch
OPTIONAL MATCH
-
-
-
Class hydra.ext.cypher.features.MergeFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
merge
java.lang.Boolean merge
The basic MERGE clause -
mergeOnCreate
java.lang.Boolean mergeOnCreate
MERGE with the ON CREATE action -
mergeOnMatch
java.lang.Boolean mergeOnMatch
MERGE with the ON MATCH action
-
-
-
Class hydra.ext.cypher.features.NodePatternFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
multipleLabels
java.lang.Boolean multipleLabels
Specifying multiple labels in a node pattern -
parameter
java.lang.Boolean parameter
Specifying a parameter as part of a node pattern -
propertyMap
java.lang.Boolean propertyMap
Specifying a key/value map of properties in a node pattern -
variableNode
java.lang.Boolean variableNode
Binding a variable to a node in a node pattern (note: included by most if not all implementations). -
wildcardLabel
java.lang.Boolean wildcardLabel
Omitting labels from a node pattern
-
-
-
Class hydra.ext.cypher.features.NullFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
isNotNull
java.lang.Boolean isNotNull
The IS NOT NULL operator -
isNull
java.lang.Boolean isNull
The IS NULL operator
-
-
-
Class hydra.ext.cypher.features.NumericFunctionFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
abs
java.lang.Boolean abs
The abs() function. Returns the absolute value of a FLOAT.; Returns the absolute value of an INTEGER. -
ceil
java.lang.Boolean ceil
The ceil() function. Returns the smallest FLOAT that is greater than or equal to a number and equal to an INTEGER. -
floor
java.lang.Boolean floor
The floor() function. Returns the largest FLOAT that is less than or equal to a number and equal to an INTEGER. -
isNaN
java.lang.Boolean isNaN
The isNaN() function. Returns true if the floating point number is NaN.; Returns true if the integer number is NaN. -
rand
java.lang.Boolean rand
The rand() function. Returns a random FLOAT in the range from 0 (inclusive) to 1 (exclusive). -
round
java.lang.Boolean round
The round() function. Returns the value of a number rounded to the nearest INTEGER.; Returns the value of a number rounded to the specified precision using rounding mode HALF_UP.; Returns the value of a number rounded to the specified precision with the specified rounding mode. -
sign
java.lang.Boolean sign
The sign() function. Returns the signum of a FLOAT: 0 if the number is 0, -1 for any negative number, and 1 for any positive number.; Returns the signum of an INTEGER: 0 if the number is 0, -1 for any negative number, and 1 for any positive number.
-
-
-
Class hydra.ext.cypher.features.PathFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
shortestPath
java.lang.Boolean shortestPath
The shortestPath() function
-
-
-
Class hydra.ext.cypher.features.PredicateFunctionFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
all
java.lang.Boolean all
The all() function. Returns true if the predicate holds for all elements in the given LIST<ANY>. -
any
java.lang.Boolean any
The any() function. Returns true if the predicate holds for at least one element in the given LIST<ANY>. -
exists
java.lang.Boolean exists
The exists() function. Returns true if a match for the pattern exists in the graph. -
isEmpty
java.lang.Boolean isEmpty
The isEmpty() function. Checks whether a LIST<ANY> is empty.; Checks whether a MAP is empty.; Checks whether a STRING is empty. -
none
java.lang.Boolean none
The none() function. Returns true if the predicate holds for no element in the given LIST<ANY>. -
single
java.lang.Boolean single
The single() function. Returns true if the predicate holds for exactly one of the elements in the given LIST<ANY>.
-
-
-
Class hydra.ext.cypher.features.ProcedureCallFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
inQueryCall
java.lang.Boolean inQueryCall
CALL within a query -
standaloneCall
java.lang.Boolean standaloneCall
Standalone / top-level CALL -
yield
java.lang.Boolean yield
The YIELD clause in CALL
-
-
-
Class hydra.ext.cypher.features.ProjectionFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
limit
java.lang.Boolean limit
The LIMIT clause -
orderBy
java.lang.Boolean orderBy
The ORDER BY clause -
projectAll
java.lang.Boolean projectAll
The * projection -
projectAs
java.lang.Boolean projectAs
The AS keyword -
projectDistinct
java.lang.Boolean projectDistinct
The DISTINCT keyword -
skip
java.lang.Boolean skip
The SKIP clause -
sortOrder
java.lang.Boolean sortOrder
The ASC/ASCENDING and DESC/DESCENDING keywords
-
-
-
Class hydra.ext.cypher.features.QuantifierFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
all
java.lang.Boolean all
The ALL quantifier -
any
java.lang.Boolean any
The ANY quantifier -
none
java.lang.Boolean none
The NONE quantifier -
single
java.lang.Boolean single
The SINGLE quantifier
-
-
-
Class hydra.ext.cypher.features.RangeLiteralFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
bounds
java.lang.Boolean bounds
Range literals with both lower and upper bounds -
exactRange
java.lang.Boolean exactRange
Range literals providing an exact number of repetitions -
lowerBound
java.lang.Boolean lowerBound
Range literals with a lower bound (only) -
starRange
java.lang.Boolean starRange
The * range literal -
upperBound
java.lang.Boolean upperBound
Range literals with an upper bound (only)
-
-
-
Class hydra.ext.cypher.features.ReadingFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
union
java.lang.Boolean union
The UNION operator -
unionAll
java.lang.Boolean unionAll
The UNION ALL operator -
unwind
java.lang.Boolean unwind
The UNWIND clause
-
-
-
Class hydra.ext.cypher.features.RelationshipDirectionFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
both
java.lang.Boolean both
The two-headed arrow (<-[]->) relationship direction -
left
java.lang.Boolean left
The left arrow (<-[]-) relationship direction -
neither
java.lang.Boolean neither
The headless arrow (-[]-) relationship direction -
right
java.lang.Boolean right
The right arrow (-[]->) relationship direction
-
-
-
Class hydra.ext.cypher.features.RelationshipPatternFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
multipleTypes
java.lang.Boolean multipleTypes
Specifying a disjunction of multiple types in a relationship pattern -
variableRelationship
java.lang.Boolean variableRelationship
Binding a variable to a relationship in a relationship pattern (note: included by most if not all implementations). -
wildcardType
java.lang.Boolean wildcardType
Omitting types from a relationship pattern
-
-
-
Class hydra.ext.cypher.features.RemoveFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
byLabel
java.lang.Boolean byLabel
REMOVE Variable:NodeLabels -
byProperty
java.lang.Boolean byProperty
REMOVE PropertyExpression
-
-
-
Class hydra.ext.cypher.features.ScalarFunctionFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
char_length
java.lang.Boolean char_length
The char_length() function. Returns the number of Unicode characters in a STRING. -
character_length
java.lang.Boolean character_length
The character_length() function. Returns the number of Unicode characters in a STRING. -
coalesce
java.lang.Boolean coalesce
The coalesce() function. Returns the first non-null value in a list of expressions. -
elementId
java.lang.Boolean elementId
The elementId() function. Returns a node identifier, unique within a specific transaction and DBMS.; Returns a relationship identifier, unique within a specific transaction and DBMS. -
endNode
java.lang.Boolean endNode
The endNode() function. Returns a relationship identifier, unique within a specific transaction and DBMS. -
head
java.lang.Boolean head
The head() function. Returns the first element in a LIST<ANY>. -
id
java.lang.Boolean id
The id() function. [Deprecated] Returns the id of a NODE. Replaced by elementId().; [Deprecated] Returns the id of a RELATIONSHIP. Replaced by elementId(). -
last
java.lang.Boolean last
The last() function. Returns the last element in a LIST<ANY>. -
length
java.lang.Boolean length
The length() function. Returns the length of a PATH. -
nullIf
java.lang.Boolean nullIf
The nullIf() function. Returns null if the two given parameters are equivalent, otherwise returns the value of the first parameter. -
properties
java.lang.Boolean properties
The properties() function. Returns a MAP containing all the properties of a MAP.; Returns a MAP containing all the properties of a NODE.; Returns a MAP containing all the properties of a RELATIONSHIP. -
randomUUID
java.lang.Boolean randomUUID
The randomUUID() function. Generates a random UUID. -
size
java.lang.Boolean size
The size() function. Returns the number of items in a LIST<ANY>.; Returns the number of Unicode characters in a STRING. -
startNode
java.lang.Boolean startNode
The startNode() function. Returns the start NODE of a RELATIONSHIP. -
toBoolean
java.lang.Boolean toBoolean
The toBoolean() function. Converts a STRING value to a BOOLEAN value.; Converts a BOOLEAN value to a BOOLEAN value.; Converts an INTEGER value to a BOOLEAN value. -
toBooleanOrNull
java.lang.Boolean toBooleanOrNull
The toBooleanOrNull() function. Converts a value to a BOOLEAN value, or null if the value cannot be converted. -
toFloat
java.lang.Boolean toFloat
The toFloat() function. Converts an INTEGER value to a FLOAT value.; Converts a STRING value to a FLOAT value. -
toFloatOrNull
java.lang.Boolean toFloatOrNull
The toFloatOrNull() function. Converts a value to a FLOAT value, or null if the value cannot be converted. -
toInteger
java.lang.Boolean toInteger
The toInteger() function. Converts a FLOAT value to an INTEGER value.; Converts a BOOLEAN value to an INTEGER value.; Converts a STRING value to an INTEGER value. -
toIntegerOrNull
java.lang.Boolean toIntegerOrNull
The toIntegerOrNull() function. Converts a value to an INTEGER value, or null if the value cannot be converted. -
type
java.lang.Boolean type
The type() function. Returns a STRING representation of the RELATIONSHIP type. -
valueType
java.lang.Boolean valueType
The valueType() function. Returns a STRING representation of the most precise value type that the given expression evaluates to.
-
-
-
Class hydra.ext.cypher.features.SetFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
propertyEquals
java.lang.Boolean propertyEquals
Defining a set using PropertyExpression = Expression -
variableEquals
java.lang.Boolean variableEquals
Defining a set using Variable = Expression -
variablePlusEquals
java.lang.Boolean variablePlusEquals
Defining a set using Variable += Expression -
variableWithNodeLabels
java.lang.Boolean variableWithNodeLabels
Defining a set using Variable:NodeLabels
-
-
-
Class hydra.ext.cypher.features.SpatialFunctionFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
point
java.lang.Boolean point
The point() function. Returns a 2D point object, given two coordinate values in the Cartesian coordinate system.; Returns a 3D point object, given three coordinate values in the Cartesian coordinate system.; Returns a 2D point object, given two coordinate values in the WGS 84 geographic coordinate system.; Returns a 3D point object, given three coordinate values in the WGS 84 geographic coordinate system. -
pointDistance
java.lang.Boolean pointDistance
The point.distance() function. Returns a FLOAT representing the geodesic distance between any two points in the same CRS. -
pointWithinBBox
java.lang.Boolean pointWithinBBox
The point.withinBBox() function. Returns true if the provided point is within the bounding box defined by the two provided points, lowerLeft and upperRight.
-
-
-
Class hydra.ext.cypher.features.StringFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
contains
java.lang.Boolean contains
The contains() function / CONTAINS -
endsWith
java.lang.Boolean endsWith
The endsWith() function / ENDS WITH -
in
java.lang.Boolean in
The in() function / IN -
startsWith
java.lang.Boolean startsWith
The startsWith() function / STARTS WITH
-
-
-
Class hydra.ext.cypher.features.StringFunctionFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
btrim
java.lang.Boolean btrim
The btrim() function. Returns the given STRING with leading and trailing whitespace removed.; Returns the given STRING with leading and trailing trimCharacterString characters removed. Introduced in 5.20. -
left
java.lang.Boolean left
The left() function. Returns a STRING containing the specified number (INTEGER) of leftmost characters in the given STRING. -
lower
java.lang.Boolean lower
The lower() function. Returns the given STRING in lowercase. This function is an alias to the toLower() function, and it was introduced as part of Cypher's GQL conformance. Introduced in 5.21. -
ltrim
java.lang.Boolean ltrim
The ltrim() function. Returns the given STRING with leading whitespace removed.; Returns the given STRING with leading trimCharacterString characters removed. Introduced in 5.20. -
normalize
java.lang.Boolean normalize
The normalize() function. Returns the given STRING normalized according to the normalization CypherFunctionForm NFC. Introduced in 5.17.; Returns the given STRING normalized according to the specified normalization CypherFunctionForm. Introduced in 5.17. -
replace
java.lang.Boolean replace
The replace() function. Returns a STRING in which all occurrences of a specified search STRING in the given STRING have been replaced by another (specified) replacement STRING. -
reverse
java.lang.Boolean reverse
The reverse() function. Returns a STRING in which the order of all characters in the given STRING have been reversed. -
right
java.lang.Boolean right
The right() function. Returns a STRING containing the specified number of rightmost characters in the given STRING. -
rtrim
java.lang.Boolean rtrim
The rtrim() function. Returns the given STRING with trailing whitespace removed.; Returns the given STRING with trailing trimCharacterString characters removed. Introduced in 5.20. -
split
java.lang.Boolean split
The split() function. Returns a LIST<STRING> resulting from the splitting of the given STRING around matches of the given delimiter.; Returns a LIST<STRING> resulting from the splitting of the given STRING around matches of any of the given delimiters. -
substring
java.lang.Boolean substring
The substring() function. Returns a substring of the given STRING, beginning with a 0-based index start.; Returns a substring of a given length from the given STRING, beginning with a 0-based index start. -
toLower
java.lang.Boolean toLower
The toLower() function. Returns the given STRING in lowercase. -
toString
java.lang.Boolean toString
The toString() function. Converts an INTEGER, FLOAT, BOOLEAN, POINT or temporal type (i.e. DATE, ZONED TIME, LOCAL TIME, ZONED DATETIME, LOCAL DATETIME or DURATION) value to a STRING. -
toStringOrNull
java.lang.Boolean toStringOrNull
The toStringOrNull() function. Converts an INTEGER, FLOAT, BOOLEAN, POINT or temporal type (i.e. DATE, ZONED TIME, LOCAL TIME, ZONED DATETIME, LOCAL DATETIME or DURATION) value to a STRING, or null if the value cannot be converted. -
toUpper
java.lang.Boolean toUpper
The toUpper() function. Returns the given STRING in uppercase. -
trim
java.lang.Boolean trim
The trim() function. Returns the given STRING with leading and trailing whitespace removed.; Returns the given STRING with the leading and/or trailing trimCharacterString character removed. Introduced in 5.20. -
upper
java.lang.Boolean upper
The upper() function. Returns the given STRING in uppercase. This function is an alias to the toUpper() function, and it was introduced as part of Cypher's GQL conformance. Introduced in 5.21.
-
-
-
Class hydra.ext.cypher.features.TemporalDurationFunctionFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
duration
java.lang.Boolean duration
The duration() function. Constructs a DURATION value. -
durationBetween
java.lang.Boolean durationBetween
The duration.between() function. Computes the DURATION between the from instant (inclusive) and the to instant (exclusive) in logical units. -
durationInDays
java.lang.Boolean durationInDays
The duration.inDays() function. Computes the DURATION between the from instant (inclusive) and the to instant (exclusive) in days. -
durationInMonths
java.lang.Boolean durationInMonths
The duration.inMonths() function. Computes the DURATION between the from instant (inclusive) and the to instant (exclusive) in months. -
durationInSeconds
java.lang.Boolean durationInSeconds
The duration.inSeconds() function. Computes the DURATION between the from instant (inclusive) and the to instant (exclusive) in seconds.
-
-
-
Class hydra.ext.cypher.features.TemporalInstantFunctionFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
date
java.lang.Boolean date
The date() function. Creates a DATE instant. -
dateRealtime
java.lang.Boolean dateRealtime
The date.realtime() function. Returns the current DATE instant using the realtime clock. -
dateStatement
java.lang.Boolean dateStatement
The date.statement() function. Returns the current DATE instant using the statement clock. -
datetime
java.lang.Boolean datetime
The datetime() function. Creates a ZONED DATETIME instant. -
datetimeFromepoch
java.lang.Boolean datetimeFromepoch
The datetime.fromepoch() function. Creates a ZONED DATETIME given the seconds and nanoseconds since the start of the epoch. -
datetimeFromepochmillis
java.lang.Boolean datetimeFromepochmillis
The datetime.fromepochmillis() function. Creates a ZONED DATETIME given the milliseconds since the start of the epoch. -
datetimeRealtime
java.lang.Boolean datetimeRealtime
The datetime.realtime() function. Returns the current ZONED DATETIME instant using the realtime clock. -
datetimeStatement
java.lang.Boolean datetimeStatement
The datetime.statement() function. Returns the current ZONED DATETIME instant using the statement clock. -
datetimeTransaction
java.lang.Boolean datetimeTransaction
The datetime.transaction() function. Returns the current ZONED DATETIME instant using the transaction clock. -
datetimeTruncate
java.lang.Boolean datetimeTruncate
The datetime.truncate() function. Truncates the given temporal value to a ZONED DATETIME instant using the specified unit. -
dateTransaction
java.lang.Boolean dateTransaction
The date.transaction() function. Returns the current DATE instant using the transaction clock. -
dateTruncate
java.lang.Boolean dateTruncate
The date.truncate() function. Truncates the given temporal value to a DATE instant using the specified unit. -
localdatetime
java.lang.Boolean localdatetime
The localdatetime() function. Creates a LOCAL DATETIME instant. -
localdatetimeRealtime
java.lang.Boolean localdatetimeRealtime
The localdatetime.realtime() function. Returns the current LOCAL DATETIME instant using the realtime clock. -
localdatetimeStatement
java.lang.Boolean localdatetimeStatement
The localdatetime.statement() function. Returns the current LOCAL DATETIME instant using the statement clock. -
localdatetimeTransaction
java.lang.Boolean localdatetimeTransaction
The localdatetime.transaction() function. Returns the current LOCAL DATETIME instant using the transaction clock. -
localdatetimeTruncate
java.lang.Boolean localdatetimeTruncate
The localdatetime.truncate() function. Truncates the given temporal value to a LOCAL DATETIME instant using the specified unit. -
localtime
java.lang.Boolean localtime
The localtime() function. Creates a LOCAL TIME instant. -
localtimeRealtime
java.lang.Boolean localtimeRealtime
The localtime.realtime() function. Returns the current LOCAL TIME instant using the realtime clock. -
localtimeStatement
java.lang.Boolean localtimeStatement
The localtime.statement() function. Returns the current LOCAL TIME instant using the statement clock. -
localtimeTransaction
java.lang.Boolean localtimeTransaction
The localtime.transaction() function. Returns the current LOCAL TIME instant using the transaction clock. -
localtimeTruncate
java.lang.Boolean localtimeTruncate
The localtime.truncate() function. Truncates the given temporal value to a LOCAL TIME instant using the specified unit. -
time
java.lang.Boolean time
The time() function. Creates a ZONED TIME instant. -
timeRealtime
java.lang.Boolean timeRealtime
The time.realtime() function. Returns the current ZONED TIME instant using the realtime clock. -
timeStatement
java.lang.Boolean timeStatement
The time.statement() function. Returns the current ZONED TIME instant using the statement clock. -
timeTransaction
java.lang.Boolean timeTransaction
The time.transaction() function. Returns the current ZONED TIME instant using the transaction clock. -
timeTruncate
java.lang.Boolean timeTruncate
The time.truncate() function. Truncates the given temporal value to a ZONED TIME instant using the specified unit.
-
-
-
Class hydra.ext.cypher.features.TrigonometricFunctionFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
acos
java.lang.Boolean acos
The acos() function. Returns the arccosine of a FLOAT in radians. -
asin
java.lang.Boolean asin
The asin() function. Returns the arcsine of a FLOAT in radians. -
atan
java.lang.Boolean atan
The atan() function. Returns the arctangent of a FLOAT in radians. -
atan2
java.lang.Boolean atan2
The atan2() function. Returns the arctangent2 of a set of coordinates in radians. -
cos
java.lang.Boolean cos
The cos() function. Returns the cosine of a FLOAT. -
cot
java.lang.Boolean cot
The cot() function. Returns the cotangent of a FLOAT. -
degrees
java.lang.Boolean degrees
The degrees() function. Converts radians to degrees. -
haversin
java.lang.Boolean haversin
The haversin() function. Returns half the versine of a number. -
pi
java.lang.Boolean pi
The pi() function. Returns the mathematical constant pi. -
radians
java.lang.Boolean radians
The radians() function. Converts degrees to radians. -
sin
java.lang.Boolean sin
The sin() function. Returns the sine of a FLOAT. -
tan
java.lang.Boolean tan
The tan() function. Returns the tangent of a FLOAT.
-
-
-
Class hydra.ext.cypher.features.UpdatingFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
create
java.lang.Boolean create
The CREATE clause -
set
java.lang.Boolean set
The SET clause -
with
java.lang.Boolean with
Multi-part queries using WITH
-
-
-
Class hydra.ext.cypher.features.VectorFunctionFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
vectorSimilarityCosine
java.lang.Boolean vectorSimilarityCosine
The vector.similarity.cosine() function. Returns a FLOAT representing the similarity between the argument vectors based on their cosine. -
vectorSimilarityEuclidean
java.lang.Boolean vectorSimilarityEuclidean
The vector.similarity.euclidean() function. Returns a FLOAT representing the similarity between the argument vectors based on their Euclidean distance.
-
-
-
-
Package hydra.ext.cypher.openCypher
-
Class hydra.ext.cypher.openCypher.AddOrSubtractExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
left
MultiplyDivideModuloExpression left
-
right
ConsList<AddOrSubtractRightHandSide> right
-
-
-
Class hydra.ext.cypher.openCypher.AddOrSubtractOperator extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.AddOrSubtractOperator.Add extends AddOrSubtractOperator implements Serializable
-
Class hydra.ext.cypher.openCypher.AddOrSubtractOperator.Subtract extends AddOrSubtractOperator implements Serializable
-
Class hydra.ext.cypher.openCypher.AddOrSubtractRightHandSide extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
MultiplyDivideModuloExpression expression
-
operator
AddOrSubtractOperator operator
-
-
-
Class hydra.ext.cypher.openCypher.AndExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<NotExpression> value
-
-
-
Class hydra.ext.cypher.openCypher.AnonymousPatternPart extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
PatternElement value
-
-
-
Class hydra.ext.cypher.openCypher.Atom extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.Atom.Case extends Atom implements Serializable
-
Serialized Fields
-
value
CaseExpression value
-
-
-
Class hydra.ext.cypher.openCypher.Atom.CountStar extends Atom implements Serializable
-
Class hydra.ext.cypher.openCypher.Atom.ExistentialSubquery extends Atom implements Serializable
-
Serialized Fields
-
value
ExistentialSubquery value
-
-
-
Class hydra.ext.cypher.openCypher.Atom.FunctionInvocation extends Atom implements Serializable
-
Serialized Fields
-
value
FunctionInvocation value
-
-
-
Class hydra.ext.cypher.openCypher.Atom.ListComprehension extends Atom implements Serializable
-
Serialized Fields
-
value
ListComprehension value
-
-
-
Class hydra.ext.cypher.openCypher.Atom.Literal extends Atom implements Serializable
-
Serialized Fields
-
value
Literal value
-
-
-
Class hydra.ext.cypher.openCypher.Atom.Parameter extends Atom implements Serializable
-
Serialized Fields
-
value
Parameter value
-
-
-
Class hydra.ext.cypher.openCypher.Atom.Parenthesized extends Atom implements Serializable
-
Serialized Fields
-
value
ParenthesizedExpression value
-
-
-
Class hydra.ext.cypher.openCypher.Atom.PatternComprehension extends Atom implements Serializable
-
Serialized Fields
-
value
PatternComprehension value
-
-
-
Class hydra.ext.cypher.openCypher.Atom.PatternPredicate extends Atom implements Serializable
-
Serialized Fields
-
value
PatternPredicate value
-
-
-
Class hydra.ext.cypher.openCypher.Atom.Quantifier extends Atom implements Serializable
-
Serialized Fields
-
value
Quantifier value
-
-
-
Class hydra.ext.cypher.openCypher.Atom.Variable extends Atom implements Serializable
-
Serialized Fields
-
value
Variable value
-
-
-
Class hydra.ext.cypher.openCypher.CaseAlternative extends java.lang.Object implements Serializable
-
Serialized Fields
-
condition
Expression condition
-
result
Expression result
-
-
-
Class hydra.ext.cypher.openCypher.CaseExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
alternatives
ConsList<CaseAlternative> alternatives
-
else_
Maybe<Expression> else_
-
expression
Maybe<Expression> expression
-
-
-
Class hydra.ext.cypher.openCypher.ComparisonExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
left
StringListNullPredicateExpression left
-
right
ConsList<PartialComparisonExpression> right
-
-
-
Class hydra.ext.cypher.openCypher.ComparisonOperator extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.ComparisonOperator.Eq extends ComparisonOperator implements Serializable
-
Class hydra.ext.cypher.openCypher.ComparisonOperator.Gt extends ComparisonOperator implements Serializable
-
Class hydra.ext.cypher.openCypher.ComparisonOperator.Gte extends ComparisonOperator implements Serializable
-
Class hydra.ext.cypher.openCypher.ComparisonOperator.Lt extends ComparisonOperator implements Serializable
-
Class hydra.ext.cypher.openCypher.ComparisonOperator.Lte extends ComparisonOperator implements Serializable
-
Class hydra.ext.cypher.openCypher.ComparisonOperator.Neq extends ComparisonOperator implements Serializable
-
Class hydra.ext.cypher.openCypher.Create extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Pattern value
-
-
-
Class hydra.ext.cypher.openCypher.Delete extends java.lang.Object implements Serializable
-
Serialized Fields
-
detach
java.lang.Boolean detach
-
expressions
ConsList<Expression> expressions
-
-
-
Class hydra.ext.cypher.openCypher.ExistentialSubquery extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.ExistentialSubquery.Pattern extends ExistentialSubquery implements Serializable
-
Serialized Fields
-
value
PatternWhere value
-
-
-
Class hydra.ext.cypher.openCypher.ExistentialSubquery.Regular extends ExistentialSubquery implements Serializable
-
Serialized Fields
-
value
RegularQuery value
-
-
-
Class hydra.ext.cypher.openCypher.ExplicitProcedureInvocation extends java.lang.Object implements Serializable
-
Serialized Fields
-
arguments
ConsList<Expression> arguments
-
name
QualifiedName name
-
-
-
Class hydra.ext.cypher.openCypher.Expression extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
OrExpression value
-
-
-
Class hydra.ext.cypher.openCypher.FilterExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.FunctionInvocation extends java.lang.Object implements Serializable
-
Serialized Fields
-
arguments
ConsList<Expression> arguments
-
distinct
java.lang.Boolean distinct
-
name
QualifiedName name
-
-
-
Class hydra.ext.cypher.openCypher.IdInColl extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
Expression expression
-
variable
Variable variable
-
-
-
Class hydra.ext.cypher.openCypher.ImplicitProcedureInvocation extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
QualifiedName value
-
-
-
Class hydra.ext.cypher.openCypher.InQueryCall extends java.lang.Object implements Serializable
-
Serialized Fields
-
call
ExplicitProcedureInvocation call
-
yieldItems
Maybe<YieldItems> yieldItems
-
-
-
Class hydra.ext.cypher.openCypher.KeyValuePair extends java.lang.Object implements Serializable
-
Serialized Fields
-
key
PropertyKeyName key
-
value
Expression value
-
-
-
Class hydra.ext.cypher.openCypher.Limit extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.cypher.openCypher.ListComprehension extends java.lang.Object implements Serializable
-
Serialized Fields
-
left
FilterExpression left
-
right
Maybe<Expression> right
-
-
-
Class hydra.ext.cypher.openCypher.ListLiteral extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<Expression> value
-
-
-
Class hydra.ext.cypher.openCypher.ListOperatorExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.ListOperatorExpression.Range extends ListOperatorExpression implements Serializable
-
Serialized Fields
-
value
RangeExpression value
-
-
-
Class hydra.ext.cypher.openCypher.ListOperatorExpression.Single extends ListOperatorExpression implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.cypher.openCypher.ListOperatorExpressionOrPropertyLookup extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.ListOperatorExpressionOrPropertyLookup.List extends ListOperatorExpressionOrPropertyLookup implements Serializable
-
Serialized Fields
-
value
ListOperatorExpression value
-
-
-
Class hydra.ext.cypher.openCypher.ListOperatorExpressionOrPropertyLookup.Property extends ListOperatorExpressionOrPropertyLookup implements Serializable
-
Serialized Fields
-
value
PropertyLookup value
-
-
-
Class hydra.ext.cypher.openCypher.ListPredicateExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
AddOrSubtractExpression value
-
-
-
Class hydra.ext.cypher.openCypher.Literal extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.Literal.Boolean_ extends Literal implements Serializable
-
Serialized Fields
-
value
java.lang.Boolean value
-
-
-
Class hydra.ext.cypher.openCypher.Literal.List extends Literal implements Serializable
-
Serialized Fields
-
value
ListLiteral value
-
-
-
Class hydra.ext.cypher.openCypher.Literal.Map extends Literal implements Serializable
-
Serialized Fields
-
value
MapLiteral value
-
-
-
Class hydra.ext.cypher.openCypher.Literal.Null extends Literal implements Serializable
-
Class hydra.ext.cypher.openCypher.Literal.Number_ extends Literal implements Serializable
-
Serialized Fields
-
value
NumberLiteral value
-
-
-
Class hydra.ext.cypher.openCypher.Literal.String_ extends Literal implements Serializable
-
Serialized Fields
-
value
StringLiteral value
-
-
-
Class hydra.ext.cypher.openCypher.MapLiteral extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<KeyValuePair> value
-
-
-
Class hydra.ext.cypher.openCypher.Match extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.MatchOrCreate extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.MatchOrCreate.Create extends MatchOrCreate implements Serializable
-
Class hydra.ext.cypher.openCypher.MatchOrCreate.Match extends MatchOrCreate implements Serializable
-
Class hydra.ext.cypher.openCypher.Merge extends java.lang.Object implements Serializable
-
Serialized Fields
-
actions
ConsList<MergeAction> actions
-
patternPart
PatternPart patternPart
-
-
-
Class hydra.ext.cypher.openCypher.MergeAction extends java.lang.Object implements Serializable
-
Serialized Fields
-
action
MatchOrCreate action
-
set
Set set
-
-
-
Class hydra.ext.cypher.openCypher.MultiPartQuery extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
SinglePartQuery body
-
with
ConsList<WithClause> with
-
-
-
Class hydra.ext.cypher.openCypher.MultiplyDivideModuloExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
left
PowerOfExpression left
-
right
ConsList<MultiplyDivideModuloRightHandSide> right
-
-
-
Class hydra.ext.cypher.openCypher.MultiplyDivideModuloOperator extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.MultiplyDivideModuloOperator.Divide extends MultiplyDivideModuloOperator implements Serializable
-
Class hydra.ext.cypher.openCypher.MultiplyDivideModuloOperator.Modulo extends MultiplyDivideModuloOperator implements Serializable
-
Class hydra.ext.cypher.openCypher.MultiplyDivideModuloOperator.Multiply extends MultiplyDivideModuloOperator implements Serializable
-
Class hydra.ext.cypher.openCypher.MultiplyDivideModuloRightHandSide extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
PowerOfExpression expression
-
operator
MultiplyDivideModuloOperator operator
-
-
-
Class hydra.ext.cypher.openCypher.NodeLabel extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.cypher.openCypher.NodeLabels extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.NodePattern extends java.lang.Object implements Serializable
-
Serialized Fields
-
labels
Maybe<NodeLabels> labels
-
properties
Maybe<Properties> properties
-
variable
Maybe<Variable> variable
-
-
-
Class hydra.ext.cypher.openCypher.NodePatternChain extends java.lang.Object implements Serializable
-
Serialized Fields
-
chain
ConsList<PatternElementChain> chain
-
nodePattern
NodePattern nodePattern
-
-
-
Class hydra.ext.cypher.openCypher.NonArithmeticOperatorExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
atom
Atom atom
-
labels
Maybe<NodeLabels> labels
-
listsAndLookups
ConsList<ListOperatorExpressionOrPropertyLookup> listsAndLookups
-
-
-
Class hydra.ext.cypher.openCypher.NotExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
ComparisonExpression expression
-
not
java.lang.Boolean not
-
-
-
Class hydra.ext.cypher.openCypher.NullPredicateExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Boolean value
-
-
-
Class hydra.ext.cypher.openCypher.NumberLiteral extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.NumberLiteral.Double_ extends NumberLiteral implements Serializable
-
Serialized Fields
-
value
java.lang.Double value
-
-
-
Class hydra.ext.cypher.openCypher.NumberLiteral.Integer_ extends NumberLiteral implements Serializable
-
Serialized Fields
-
value
java.math.BigInteger value
-
-
-
Class hydra.ext.cypher.openCypher.Order extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.OrExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<XorExpression> value
-
-
-
Class hydra.ext.cypher.openCypher.Parameter extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.Parameter.Integer_ extends Parameter implements Serializable
-
Serialized Fields
-
value
java.math.BigInteger value
-
-
-
Class hydra.ext.cypher.openCypher.Parameter.Symbolic extends Parameter implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.cypher.openCypher.ParenthesizedExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.cypher.openCypher.PartialComparisonExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
operator
ComparisonOperator operator
-
right
StringListNullPredicateExpression right
-
-
-
Class hydra.ext.cypher.openCypher.Pattern extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<PatternPart> value
-
-
-
Class hydra.ext.cypher.openCypher.PatternComprehension extends java.lang.Object implements Serializable
-
Serialized Fields
-
pattern
RelationshipsPattern pattern
-
right
Expression right
-
variable
Maybe<Variable> variable
-
where
Maybe<Where> where
-
-
-
Class hydra.ext.cypher.openCypher.PatternElement extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.PatternElement.Chained extends PatternElement implements Serializable
-
Serialized Fields
-
value
NodePatternChain value
-
-
-
Class hydra.ext.cypher.openCypher.PatternElement.Parenthesized extends PatternElement implements Serializable
-
Serialized Fields
-
value
PatternElement value
-
-
-
Class hydra.ext.cypher.openCypher.PatternElementChain extends java.lang.Object implements Serializable
-
Serialized Fields
-
node
NodePattern node
-
relationship
RelationshipPattern relationship
-
-
-
Class hydra.ext.cypher.openCypher.PatternPart extends java.lang.Object implements Serializable
-
Serialized Fields
-
pattern
AnonymousPatternPart pattern
-
variable
Maybe<Variable> variable
-
-
-
Class hydra.ext.cypher.openCypher.PatternPredicate extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
RelationshipsPattern value
-
-
-
Class hydra.ext.cypher.openCypher.PatternWhere extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.PowerOfExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<UnaryAddOrSubtractExpression> value
-
-
-
Class hydra.ext.cypher.openCypher.ProcedureInvocation extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.ProcedureInvocation.Explicit extends ProcedureInvocation implements Serializable
-
Serialized Fields
-
value
ExplicitProcedureInvocation value
-
-
-
Class hydra.ext.cypher.openCypher.ProcedureInvocation.Implicit extends ProcedureInvocation implements Serializable
-
Serialized Fields
-
value
ImplicitProcedureInvocation value
-
-
-
Class hydra.ext.cypher.openCypher.ProcedureResultField extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.cypher.openCypher.ProjectionBody extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.ProjectionItem extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
Expression expression
-
variable
Maybe<Variable> variable
-
-
-
Class hydra.ext.cypher.openCypher.ProjectionItems extends java.lang.Object implements Serializable
-
Serialized Fields
-
explicit
ConsList<ProjectionItem> explicit
-
star
java.lang.Boolean star
-
-
-
Class hydra.ext.cypher.openCypher.Properties extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.Properties.Map extends Properties implements Serializable
-
Serialized Fields
-
value
MapLiteral value
-
-
-
Class hydra.ext.cypher.openCypher.Properties.Parameter extends Properties implements Serializable
-
Serialized Fields
-
value
Parameter value
-
-
-
Class hydra.ext.cypher.openCypher.PropertyEquals extends java.lang.Object implements Serializable
-
Serialized Fields
-
lhs
PropertyExpression lhs
-
rhs
Expression rhs
-
-
-
Class hydra.ext.cypher.openCypher.PropertyExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
atom
Atom atom
-
lookups
ConsList<PropertyLookup> lookups
-
-
-
Class hydra.ext.cypher.openCypher.PropertyKeyName extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.cypher.openCypher.PropertyLookup extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
PropertyKeyName value
-
-
-
Class hydra.ext.cypher.openCypher.QualifiedName extends java.lang.Object implements Serializable
-
Serialized Fields
-
local
java.lang.String local
-
namespace
java.lang.String namespace
-
-
-
Class hydra.ext.cypher.openCypher.Quantifier extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
FilterExpression expression
-
operator
QuantifierOperator operator
-
-
-
Class hydra.ext.cypher.openCypher.QuantifierOperator extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.QuantifierOperator.All extends QuantifierOperator implements Serializable
-
Class hydra.ext.cypher.openCypher.QuantifierOperator.Any extends QuantifierOperator implements Serializable
-
Class hydra.ext.cypher.openCypher.QuantifierOperator.None extends QuantifierOperator implements Serializable
-
Class hydra.ext.cypher.openCypher.QuantifierOperator.Single extends QuantifierOperator implements Serializable
-
Class hydra.ext.cypher.openCypher.Query extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.Query.Regular extends Query implements Serializable
-
Serialized Fields
-
value
RegularQuery value
-
-
-
Class hydra.ext.cypher.openCypher.Query.Standalone extends Query implements Serializable
-
Serialized Fields
-
value
StandaloneCall value
-
-
-
Class hydra.ext.cypher.openCypher.RangeExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
end
Maybe<Expression> end
-
start
Maybe<Expression> start
-
-
-
Class hydra.ext.cypher.openCypher.RangeLiteral extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.ReadingClause extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.ReadingClause.InQueryCall extends ReadingClause implements Serializable
-
Serialized Fields
-
value
InQueryCall value
-
-
-
Class hydra.ext.cypher.openCypher.ReadingClause.Match extends ReadingClause implements Serializable
-
Serialized Fields
-
value
Match value
-
-
-
Class hydra.ext.cypher.openCypher.ReadingClause.Unwind extends ReadingClause implements Serializable
-
Serialized Fields
-
value
Unwind value
-
-
-
Class hydra.ext.cypher.openCypher.RegularQuery extends java.lang.Object implements Serializable
-
Serialized Fields
-
head
SingleQuery head
-
rest
ConsList<Union> rest
-
-
-
Class hydra.ext.cypher.openCypher.RelationshipDetail extends java.lang.Object implements Serializable
-
Serialized Fields
-
properties
Maybe<Properties> properties
-
range
Maybe<RangeLiteral> range
-
types
Maybe<RelationshipTypes> types
-
variable
Maybe<Variable> variable
-
-
-
Class hydra.ext.cypher.openCypher.RelationshipPattern extends java.lang.Object implements Serializable
-
Serialized Fields
-
detail
Maybe<RelationshipDetail> detail
-
leftArrow
java.lang.Boolean leftArrow
-
rightArrow
java.lang.Boolean rightArrow
-
-
-
Class hydra.ext.cypher.openCypher.RelationshipsPattern extends java.lang.Object implements Serializable
-
Serialized Fields
-
chain
ConsList<PatternElementChain> chain
-
nodePattern
NodePattern nodePattern
-
-
-
Class hydra.ext.cypher.openCypher.RelationshipTypes extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<RelTypeName> value
-
-
-
Class hydra.ext.cypher.openCypher.RelTypeName extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.cypher.openCypher.Remove extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<RemoveItem> value
-
-
-
Class hydra.ext.cypher.openCypher.RemoveItem extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.RemoveItem.Property extends RemoveItem implements Serializable
-
Serialized Fields
-
value
PropertyExpression value
-
-
-
Class hydra.ext.cypher.openCypher.RemoveItem.VariableLabels extends RemoveItem implements Serializable
-
Serialized Fields
-
value
VariableAndNodeLabels value
-
-
-
Class hydra.ext.cypher.openCypher.Return extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ProjectionBody value
-
-
-
Class hydra.ext.cypher.openCypher.Set extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.SetItem extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.SetItem.Property extends SetItem implements Serializable
-
Serialized Fields
-
value
PropertyEquals value
-
-
-
Class hydra.ext.cypher.openCypher.SetItem.VariableEqual extends SetItem implements Serializable
-
Serialized Fields
-
value
VariableEquals value
-
-
-
Class hydra.ext.cypher.openCypher.SetItem.VariableLabels extends SetItem implements Serializable
-
Serialized Fields
-
value
VariableAndNodeLabels value
-
-
-
Class hydra.ext.cypher.openCypher.SetItem.VariablePlusEqual extends SetItem implements Serializable
-
Serialized Fields
-
value
VariablePlusEquals value
-
-
-
Class hydra.ext.cypher.openCypher.SinglePartQuery extends java.lang.Object implements Serializable
-
Serialized Fields
-
reading
ConsList<ReadingClause> reading
-
return_
Maybe<Return> return_
-
updating
ConsList<UpdatingClause> updating
-
-
-
Class hydra.ext.cypher.openCypher.SingleQuery extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.SingleQuery.MultiPart extends SingleQuery implements Serializable
-
Serialized Fields
-
value
MultiPartQuery value
-
-
-
Class hydra.ext.cypher.openCypher.SingleQuery.SinglePart extends SingleQuery implements Serializable
-
Serialized Fields
-
value
SinglePartQuery value
-
-
-
Class hydra.ext.cypher.openCypher.Skip extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.cypher.openCypher.SortItem extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
Expression expression
-
order
Maybe<SortOrder> order
-
-
-
Class hydra.ext.cypher.openCypher.SortOrder extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.SortOrder.Ascending extends SortOrder implements Serializable
-
Class hydra.ext.cypher.openCypher.SortOrder.Descending extends SortOrder implements Serializable
-
Class hydra.ext.cypher.openCypher.StandaloneCall extends java.lang.Object implements Serializable
-
Serialized Fields
-
call
ProcedureInvocation call
-
yieldItems
Maybe<StarOrYieldItems> yieldItems
-
-
-
Class hydra.ext.cypher.openCypher.StarOrYieldItems extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.StarOrYieldItems.Items extends StarOrYieldItems implements Serializable
-
Serialized Fields
-
value
YieldItems value
-
-
-
Class hydra.ext.cypher.openCypher.StarOrYieldItems.Star extends StarOrYieldItems implements Serializable
-
Class hydra.ext.cypher.openCypher.StringListNullPredicateExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
left
AddOrSubtractExpression left
-
right
ConsList<StringListNullPredicateRightHandSide> right
-
-
-
Class hydra.ext.cypher.openCypher.StringListNullPredicateRightHandSide extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.StringListNullPredicateRightHandSide.List extends StringListNullPredicateRightHandSide implements Serializable
-
Serialized Fields
-
value
ListPredicateExpression value
-
-
-
Class hydra.ext.cypher.openCypher.StringListNullPredicateRightHandSide.Null extends StringListNullPredicateRightHandSide implements Serializable
-
Serialized Fields
-
value
NullPredicateExpression value
-
-
-
Class hydra.ext.cypher.openCypher.StringListNullPredicateRightHandSide.String_ extends StringListNullPredicateRightHandSide implements Serializable
-
Serialized Fields
-
value
StringPredicateExpression value
-
-
-
Class hydra.ext.cypher.openCypher.StringLiteral extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.cypher.openCypher.StringPredicateExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
AddOrSubtractExpression expression
-
operator
StringPredicateOperator operator
-
-
-
Class hydra.ext.cypher.openCypher.StringPredicateOperator extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.StringPredicateOperator.Contains extends StringPredicateOperator implements Serializable
-
Class hydra.ext.cypher.openCypher.StringPredicateOperator.EndsWith extends StringPredicateOperator implements Serializable
-
Class hydra.ext.cypher.openCypher.StringPredicateOperator.StartsWith extends StringPredicateOperator implements Serializable
-
Class hydra.ext.cypher.openCypher.UnaryAddOrSubtractExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
NonArithmeticOperatorExpression expression
-
operator
Maybe<AddOrSubtractOperator> operator
-
-
-
Class hydra.ext.cypher.openCypher.Union extends java.lang.Object implements Serializable
-
Serialized Fields
-
all
java.lang.Boolean all
-
query
SingleQuery query
-
-
-
Class hydra.ext.cypher.openCypher.Unwind extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
Expression expression
-
variable
Variable variable
-
-
-
Class hydra.ext.cypher.openCypher.UpdatingClause extends java.lang.Object implements Serializable
-
Class hydra.ext.cypher.openCypher.UpdatingClause.Create extends UpdatingClause implements Serializable
-
Serialized Fields
-
value
Create value
-
-
-
Class hydra.ext.cypher.openCypher.UpdatingClause.Delete extends UpdatingClause implements Serializable
-
Serialized Fields
-
value
Delete value
-
-
-
Class hydra.ext.cypher.openCypher.UpdatingClause.Merge extends UpdatingClause implements Serializable
-
Serialized Fields
-
value
Merge value
-
-
-
Class hydra.ext.cypher.openCypher.UpdatingClause.Remove extends UpdatingClause implements Serializable
-
Serialized Fields
-
value
Remove value
-
-
-
Class hydra.ext.cypher.openCypher.UpdatingClause.Set extends UpdatingClause implements Serializable
-
Serialized Fields
-
value
Set value
-
-
-
Class hydra.ext.cypher.openCypher.Variable extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.cypher.openCypher.VariableAndNodeLabels extends java.lang.Object implements Serializable
-
Serialized Fields
-
labels
NodeLabels labels
-
variable
Variable variable
-
-
-
Class hydra.ext.cypher.openCypher.VariableEquals extends java.lang.Object implements Serializable
-
Serialized Fields
-
lhs
Variable lhs
-
rhs
Expression rhs
-
-
-
Class hydra.ext.cypher.openCypher.VariablePlusEquals extends java.lang.Object implements Serializable
-
Serialized Fields
-
lhs
Variable lhs
-
rhs
Expression rhs
-
-
-
Class hydra.ext.cypher.openCypher.Where extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.cypher.openCypher.With extends java.lang.Object implements Serializable
-
Serialized Fields
-
projection
ProjectionBody projection
-
where
Maybe<Where> where
-
-
-
Class hydra.ext.cypher.openCypher.WithClause extends java.lang.Object implements Serializable
-
Serialized Fields
-
reading
ConsList<ReadingClause> reading
-
updating
ConsList<UpdatingClause> updating
-
with
With with
-
-
-
Class hydra.ext.cypher.openCypher.XorExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<AndExpression> value
-
-
-
Class hydra.ext.cypher.openCypher.YieldItem extends java.lang.Object implements Serializable
-
Serialized Fields
-
field
Maybe<ProcedureResultField> field
-
variable
Variable variable
-
-
-
Class hydra.ext.cypher.openCypher.YieldItems extends java.lang.Object implements Serializable
-
-
Package hydra.ext.haskell.syntax
-
Class hydra.ext.haskell.syntax.Alternative extends java.lang.Object implements Serializable
-
Serialized Fields
-
binds
Maybe<LocalBindings> binds
Optional local bindings -
pattern
Pattern pattern
The pattern to match -
rhs
CaseRhs rhs
The right-hand side of the alternative
-
-
-
Class hydra.ext.haskell.syntax.ApplicationDeclarationHead extends java.lang.Object implements Serializable
-
Serialized Fields
-
function
DeclarationHead function
The function being applied -
operand
Variable operand
The type variable operand
-
-
-
Class hydra.ext.haskell.syntax.ApplicationExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
argument
Expression argument
The argument -
function
Expression function
The function being applied
-
-
-
Class hydra.ext.haskell.syntax.ApplicationPattern extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.ApplicationType extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.AsPattern extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.Assertion extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.Assertion.Class_ extends Assertion implements Serializable
-
Serialized Fields
-
value
ClassAssertion value
-
-
-
Class hydra.ext.haskell.syntax.Assertion.Tuple extends Assertion implements Serializable
-
Class hydra.ext.haskell.syntax.CaseExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
alternatives
ConsList<Alternative> alternatives
The pattern-matching alternatives -
case_
Expression case_
The expression being matched
-
-
-
Class hydra.ext.haskell.syntax.CaseRhs extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.haskell.syntax.ClassAssertion extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.Constructor extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.Constructor.Ordinary extends Constructor implements Serializable
-
Serialized Fields
-
value
OrdinaryConstructor value
-
-
-
Class hydra.ext.haskell.syntax.Constructor.Record extends Constructor implements Serializable
-
Serialized Fields
-
value
RecordConstructor value
-
-
-
Class hydra.ext.haskell.syntax.ConstructorWithComments extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
Constructor body
The constructor -
comments
Maybe<java.lang.String> comments
Optional comments
-
-
-
Class hydra.ext.haskell.syntax.ConstructRecordExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
fields
ConsList<FieldUpdate> fields
The field assignments -
name
Name name
The constructor name
-
-
-
Class hydra.ext.haskell.syntax.ContextType extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.DataDeclaration extends java.lang.Object implements Serializable
-
Serialized Fields
-
constructors
ConsList<ConstructorWithComments> constructors
The data constructors -
context
ConsList<Assertion> context
Type class constraints -
deriving
ConsList<Deriving> deriving
Derived type class instances -
head
DeclarationHead head
The declaration head -
keyword
DataOrNewtype keyword
The 'data' or 'newtype' keyword
-
-
-
Class hydra.ext.haskell.syntax.DataOrNewtype extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.DataOrNewtype.Data extends DataOrNewtype implements Serializable
-
Class hydra.ext.haskell.syntax.DataOrNewtype.Newtype extends DataOrNewtype implements Serializable
-
Class hydra.ext.haskell.syntax.Declaration extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.Declaration.Data extends Declaration implements Serializable
-
Serialized Fields
-
value
DataDeclaration value
-
-
-
Class hydra.ext.haskell.syntax.Declaration.Type extends Declaration implements Serializable
-
Serialized Fields
-
value
TypeDeclaration value
-
-
-
Class hydra.ext.haskell.syntax.Declaration.TypedBinding extends Declaration implements Serializable
-
Serialized Fields
-
value
TypedBinding value
-
-
-
Class hydra.ext.haskell.syntax.Declaration.ValueBinding extends Declaration implements Serializable
-
Serialized Fields
-
value
ValueBinding value
-
-
-
Class hydra.ext.haskell.syntax.DeclarationHead extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.DeclarationHead.Application extends DeclarationHead implements Serializable
-
Serialized Fields
-
value
ApplicationDeclarationHead value
-
-
-
Class hydra.ext.haskell.syntax.DeclarationHead.Parens extends DeclarationHead implements Serializable
-
Serialized Fields
-
value
DeclarationHead value
-
-
-
Class hydra.ext.haskell.syntax.DeclarationHead.Simple extends DeclarationHead implements Serializable
-
Serialized Fields
-
value
Name value
-
-
-
Class hydra.ext.haskell.syntax.DeclarationWithComments extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
Declaration body
The declaration -
comments
Maybe<java.lang.String> comments
Optional comments
-
-
-
Class hydra.ext.haskell.syntax.Deriving extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.Export extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.Export.Declaration extends Export implements Serializable
-
Serialized Fields
-
value
ImportExportSpec value
-
-
-
Class hydra.ext.haskell.syntax.Export.Module extends Export implements Serializable
-
Serialized Fields
-
value
ModuleName value
-
-
-
Class hydra.ext.haskell.syntax.Expression extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.Expression.Application extends Expression implements Serializable
-
Serialized Fields
-
value
ApplicationExpression value
-
-
-
Class hydra.ext.haskell.syntax.Expression.Case extends Expression implements Serializable
-
Serialized Fields
-
value
CaseExpression value
-
-
-
Class hydra.ext.haskell.syntax.Expression.ConstructRecord extends Expression implements Serializable
-
Serialized Fields
-
value
ConstructRecordExpression value
-
-
-
Class hydra.ext.haskell.syntax.Expression.Do extends Expression implements Serializable
-
Class hydra.ext.haskell.syntax.Expression.If extends Expression implements Serializable
-
Serialized Fields
-
value
IfExpression value
-
-
-
Class hydra.ext.haskell.syntax.Expression.InfixApplication extends Expression implements Serializable
-
Serialized Fields
-
value
InfixApplicationExpression value
-
-
-
Class hydra.ext.haskell.syntax.Expression.Lambda extends Expression implements Serializable
-
Serialized Fields
-
value
LambdaExpression value
-
-
-
Class hydra.ext.haskell.syntax.Expression.LeftSection extends Expression implements Serializable
-
Serialized Fields
-
value
SectionExpression value
-
-
-
Class hydra.ext.haskell.syntax.Expression.Let extends Expression implements Serializable
-
Serialized Fields
-
value
LetExpression value
-
-
-
Class hydra.ext.haskell.syntax.Expression.List extends Expression implements Serializable
-
Serialized Fields
-
value
ConsList<Expression> value
-
-
-
Class hydra.ext.haskell.syntax.Expression.Literal extends Expression implements Serializable
-
Serialized Fields
-
value
Literal value
-
-
-
Class hydra.ext.haskell.syntax.Expression.Parens extends Expression implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.haskell.syntax.Expression.PrefixApplication extends Expression implements Serializable
-
Serialized Fields
-
value
PrefixApplicationExpression value
-
-
-
Class hydra.ext.haskell.syntax.Expression.RightSection extends Expression implements Serializable
-
Serialized Fields
-
value
SectionExpression value
-
-
-
Class hydra.ext.haskell.syntax.Expression.Tuple extends Expression implements Serializable
-
Serialized Fields
-
value
ConsList<Expression> value
-
-
-
Class hydra.ext.haskell.syntax.Expression.TypeSignature extends Expression implements Serializable
-
Serialized Fields
-
value
TypeSignatureExpression value
-
-
-
Class hydra.ext.haskell.syntax.Expression.UpdateRecord extends Expression implements Serializable
-
Serialized Fields
-
value
UpdateRecordExpression value
-
-
-
Class hydra.ext.haskell.syntax.Expression.Variable extends Expression implements Serializable
-
Serialized Fields
-
value
Name value
-
-
-
Class hydra.ext.haskell.syntax.Field extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.FieldUpdate extends java.lang.Object implements Serializable
-
Serialized Fields
-
name
Name name
The field name -
value
Expression value
The field value
-
-
-
Class hydra.ext.haskell.syntax.FieldWithComments extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.FunctionType extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.IfExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
condition
Expression condition
The condition expression -
else_
Expression else_
The 'else' branch -
then
Expression then
The 'then' branch
-
-
-
Class hydra.ext.haskell.syntax.Import extends java.lang.Object implements Serializable
-
Serialized Fields
-
as
Maybe<ModuleName> as
Optional alias for the module -
module
ModuleName module
The module being imported -
qualified
java.lang.Boolean qualified
Whether the import is qualified -
spec
Maybe<SpecImport> spec
Optional import specification
-
-
-
Class hydra.ext.haskell.syntax.ImportExportSpec extends java.lang.Object implements Serializable
-
Serialized Fields
-
modifier
Maybe<ImportModifier> modifier
Optional import modifier -
name
Name name
The name being imported or exported -
subspec
Maybe<SubspecImportExportSpec> subspec
Optional subspecification
-
-
-
Class hydra.ext.haskell.syntax.ImportModifier extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.ImportModifier.Pattern extends ImportModifier implements Serializable
-
Class hydra.ext.haskell.syntax.ImportModifier.Type extends ImportModifier implements Serializable
-
Class hydra.ext.haskell.syntax.InfixApplicationExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
lhs
Expression lhs
The left-hand operand -
operator
Operator operator
The infix operator -
rhs
Expression rhs
The right-hand operand
-
-
-
Class hydra.ext.haskell.syntax.InfixType extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.LambdaExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
bindings
ConsList<Pattern> bindings
The patterns binding parameters -
inner
Expression inner
The body of the lambda
-
-
-
Class hydra.ext.haskell.syntax.LetExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
bindings
ConsList<LocalBinding> bindings
The local bindings -
inner
Expression inner
The body of the let expression
-
-
-
Class hydra.ext.haskell.syntax.Literal extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.Literal.Char extends Literal implements Serializable
-
Serialized Fields
-
value
java.lang.Character value
-
-
-
Class hydra.ext.haskell.syntax.Literal.Double_ extends Literal implements Serializable
-
Serialized Fields
-
value
java.lang.Double value
-
-
-
Class hydra.ext.haskell.syntax.Literal.Float_ extends Literal implements Serializable
-
Serialized Fields
-
value
java.lang.Float value
-
-
-
Class hydra.ext.haskell.syntax.Literal.Int extends Literal implements Serializable
-
Serialized Fields
-
value
java.lang.Integer value
-
-
-
Class hydra.ext.haskell.syntax.Literal.Integer_ extends Literal implements Serializable
-
Serialized Fields
-
value
java.math.BigInteger value
-
-
-
Class hydra.ext.haskell.syntax.Literal.String_ extends Literal implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.haskell.syntax.LocalBinding extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.LocalBinding.Signature extends LocalBinding implements Serializable
-
Serialized Fields
-
value
TypeSignature value
-
-
-
Class hydra.ext.haskell.syntax.LocalBinding.Value extends LocalBinding implements Serializable
-
Serialized Fields
-
value
ValueBinding value
-
-
-
Class hydra.ext.haskell.syntax.LocalBindings extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<LocalBinding> value
-
-
-
Class hydra.ext.haskell.syntax.Module extends java.lang.Object implements Serializable
-
Serialized Fields
-
declarations
ConsList<DeclarationWithComments> declarations
Module declarations -
head
Maybe<ModuleHead> head
Optional module head -
imports
ConsList<Import> imports
Import statements
-
-
-
Class hydra.ext.haskell.syntax.ModuleHead extends java.lang.Object implements Serializable
-
Serialized Fields
-
comments
Maybe<java.lang.String> comments
Optional module-level comments -
exports
ConsList<Export> exports
Export list -
name
ModuleName name
The module name
-
-
-
Class hydra.ext.haskell.syntax.ModuleName extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.haskell.syntax.Name extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.Name.Implicit extends Name implements Serializable
-
Serialized Fields
-
value
QualifiedName value
-
-
-
Class hydra.ext.haskell.syntax.Name.Normal extends Name implements Serializable
-
Serialized Fields
-
value
QualifiedName value
-
-
-
Class hydra.ext.haskell.syntax.Name.Parens extends Name implements Serializable
-
Serialized Fields
-
value
QualifiedName value
-
-
-
Class hydra.ext.haskell.syntax.NamePart extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.haskell.syntax.Operator extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.Operator.Backtick extends Operator implements Serializable
-
Serialized Fields
-
value
QualifiedName value
-
-
-
Class hydra.ext.haskell.syntax.Operator.Normal extends Operator implements Serializable
-
Serialized Fields
-
value
QualifiedName value
-
-
-
Class hydra.ext.haskell.syntax.OrdinaryConstructor extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.Pattern extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.Pattern.Application extends Pattern implements Serializable
-
Serialized Fields
-
value
ApplicationPattern value
-
-
-
Class hydra.ext.haskell.syntax.Pattern.As extends Pattern implements Serializable
-
Serialized Fields
-
value
AsPattern value
-
-
-
Class hydra.ext.haskell.syntax.Pattern.List extends Pattern implements Serializable
-
Class hydra.ext.haskell.syntax.Pattern.Literal extends Pattern implements Serializable
-
Serialized Fields
-
value
Literal value
-
-
-
Class hydra.ext.haskell.syntax.Pattern.Name extends Pattern implements Serializable
-
Serialized Fields
-
value
Name value
-
-
-
Class hydra.ext.haskell.syntax.Pattern.Parens extends Pattern implements Serializable
-
Serialized Fields
-
value
Pattern value
-
-
-
Class hydra.ext.haskell.syntax.Pattern.Record extends Pattern implements Serializable
-
Serialized Fields
-
value
RecordPattern value
-
-
-
Class hydra.ext.haskell.syntax.Pattern.Tuple extends Pattern implements Serializable
-
Class hydra.ext.haskell.syntax.Pattern.Typed extends Pattern implements Serializable
-
Serialized Fields
-
value
TypedPattern value
-
-
-
Class hydra.ext.haskell.syntax.Pattern.Wildcard extends Pattern implements Serializable
-
Class hydra.ext.haskell.syntax.PatternField extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.PrefixApplicationExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
operator
Operator operator
The prefix operator -
rhs
Expression rhs
The operand
-
-
-
Class hydra.ext.haskell.syntax.QualifiedName extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.RecordConstructor extends java.lang.Object implements Serializable
-
Serialized Fields
-
fields
ConsList<FieldWithComments> fields
The named fields of the record -
name
Name name
The name of the constructor
-
-
-
Class hydra.ext.haskell.syntax.RecordPattern extends java.lang.Object implements Serializable
-
Serialized Fields
-
fields
ConsList<PatternField> fields
The field patterns -
name
Name name
The constructor name
-
-
-
Class hydra.ext.haskell.syntax.RightHandSide extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.haskell.syntax.SectionExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
Expression expression
The operand -
operator
Operator operator
The operator
-
-
-
Class hydra.ext.haskell.syntax.SimpleValueBinding extends java.lang.Object implements Serializable
-
Serialized Fields
-
localBindings
Maybe<LocalBindings> localBindings
Optional local bindings (where clause) -
pattern
Pattern pattern
The pattern being bound -
rhs
RightHandSide rhs
The right-hand side
-
-
-
Class hydra.ext.haskell.syntax.SpecImport extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.SpecImport.Hiding extends SpecImport implements Serializable
-
Serialized Fields
-
value
ConsList<ImportExportSpec> value
-
-
-
Class hydra.ext.haskell.syntax.SpecImport.List extends SpecImport implements Serializable
-
Serialized Fields
-
value
ConsList<ImportExportSpec> value
-
-
-
Class hydra.ext.haskell.syntax.Statement extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.haskell.syntax.SubspecImportExportSpec extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.SubspecImportExportSpec.All extends SubspecImportExportSpec implements Serializable
-
Class hydra.ext.haskell.syntax.SubspecImportExportSpec.List extends SubspecImportExportSpec implements Serializable
-
Class hydra.ext.haskell.syntax.Type extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.Type.Application extends Type implements Serializable
-
Serialized Fields
-
value
ApplicationType value
-
-
-
Class hydra.ext.haskell.syntax.Type.Ctx extends Type implements Serializable
-
Serialized Fields
-
value
ContextType value
-
-
-
Class hydra.ext.haskell.syntax.Type.Function extends Type implements Serializable
-
Serialized Fields
-
value
FunctionType value
-
-
-
Class hydra.ext.haskell.syntax.Type.Infix extends Type implements Serializable
-
Serialized Fields
-
value
InfixType value
-
-
-
Class hydra.ext.haskell.syntax.Type.List extends Type implements Serializable
-
Serialized Fields
-
value
Type value
-
-
-
Class hydra.ext.haskell.syntax.Type.Parens extends Type implements Serializable
-
Serialized Fields
-
value
Type value
-
-
-
Class hydra.ext.haskell.syntax.Type.Tuple extends Type implements Serializable
-
Class hydra.ext.haskell.syntax.Type.Variable extends Type implements Serializable
-
Serialized Fields
-
value
Name value
-
-
-
Class hydra.ext.haskell.syntax.TypedBinding extends java.lang.Object implements Serializable
-
Serialized Fields
-
typeSignature
TypeSignature typeSignature
The type signature -
valueBinding
ValueBinding valueBinding
The value binding
-
-
-
Class hydra.ext.haskell.syntax.TypeDeclaration extends java.lang.Object implements Serializable
-
Serialized Fields
-
name
DeclarationHead name
The declaration head -
type
Type type
The type being defined
-
-
-
Class hydra.ext.haskell.syntax.TypedPattern extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.TypeSignature extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.TypeSignatureExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
inner
Expression inner
The expression being typed -
type
Type type
The type signature
-
-
-
Class hydra.ext.haskell.syntax.UpdateRecordExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
fields
ConsList<FieldUpdate> fields
The field updates -
inner
Expression inner
The record being updated
-
-
-
Class hydra.ext.haskell.syntax.ValueBinding extends java.lang.Object implements Serializable
-
Class hydra.ext.haskell.syntax.ValueBinding.Simple extends ValueBinding implements Serializable
-
Serialized Fields
-
value
SimpleValueBinding value
-
-
-
Class hydra.ext.haskell.syntax.Variable extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Name value
-
-
-
-
Package hydra.ext.io.shex.syntax
-
Class hydra.ext.io.shex.syntax.Annotation extends java.lang.Object implements Serializable
-
Serialized Fields
-
alts
Annotation_Alts alts
-
Predicate
Predicate Predicate
-
-
-
Class hydra.ext.io.shex.syntax.Annotation_Alts extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.Annotation_Alts.Iri extends Annotation_Alts implements Serializable
-
Serialized Fields
-
value
Iri value
-
-
-
Class hydra.ext.io.shex.syntax.Annotation_Alts.Literal extends Annotation_Alts implements Serializable
-
Serialized Fields
-
value
Literal value
-
-
-
Class hydra.ext.io.shex.syntax.AtpNameLn extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.AtpNameNs extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.BaseDecl extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
IriRef value
-
-
-
Class hydra.ext.io.shex.syntax.BlankNode extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
BlankNodeLabel value
-
-
-
Class hydra.ext.io.shex.syntax.BlankNodeLabel extends java.lang.Object implements Serializable
-
Serialized Fields
-
alts
BlankNodeLabel_Alts alts
-
ListOfAlts
Maybe<ConsList<BlankNodeLabel_ListOfAlts_Option_Elmt>> ListOfAlts
-
PnChars
PnChars PnChars
-
-
-
Class hydra.ext.io.shex.syntax.BlankNodeLabel_Alts extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.BlankNodeLabel_Alts.PnCharsU extends BlankNodeLabel_Alts implements Serializable
-
Serialized Fields
-
value
PnCharsU value
-
-
-
Class hydra.ext.io.shex.syntax.BlankNodeLabel_Alts.Regex extends BlankNodeLabel_Alts implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.io.shex.syntax.BlankNodeLabel_ListOfAlts_Option_Elmt extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.BlankNodeLabel_ListOfAlts_Option_Elmt.Period extends BlankNodeLabel_ListOfAlts_Option_Elmt implements Serializable
-
Class hydra.ext.io.shex.syntax.BlankNodeLabel_ListOfAlts_Option_Elmt.PnChars extends BlankNodeLabel_ListOfAlts_Option_Elmt implements Serializable
-
Serialized Fields
-
value
PnChars value
-
-
-
Class hydra.ext.io.shex.syntax.BooleanLiteral extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.BooleanLiteral.False extends BooleanLiteral implements Serializable
-
Class hydra.ext.io.shex.syntax.BooleanLiteral.True extends BooleanLiteral implements Serializable
-
Class hydra.ext.io.shex.syntax.BracketedTripleExpr extends java.lang.Object implements Serializable
-
Serialized Fields
-
Cardinality
Maybe<Cardinality> Cardinality
-
InnerTripleExpr
InnerTripleExpr InnerTripleExpr
-
listOfAnnotation
ConsList<Annotation> listOfAnnotation
-
SemanticActions
SemanticActions SemanticActions
-
-
-
Class hydra.ext.io.shex.syntax.Cardinality extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.Cardinality.Ast extends Cardinality implements Serializable
-
Class hydra.ext.io.shex.syntax.Cardinality.Plus extends Cardinality implements Serializable
-
Class hydra.ext.io.shex.syntax.Cardinality.Quest extends Cardinality implements Serializable
-
Class hydra.ext.io.shex.syntax.Cardinality.RepeatRange extends Cardinality implements Serializable
-
Serialized Fields
-
value
RepeatRange value
-
-
-
Class hydra.ext.io.shex.syntax.Code extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.Code_Elmt extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.Code_Elmt.Regex extends Code_Elmt implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.io.shex.syntax.Code_Elmt.Sequence extends Code_Elmt implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.io.shex.syntax.Code_Elmt.Uchar extends Code_Elmt implements Serializable
-
Serialized Fields
-
value
Uchar value
-
-
-
Class hydra.ext.io.shex.syntax.CodeDecl extends java.lang.Object implements Serializable
-
Serialized Fields
-
alts
CodeDecl_Alts alts
-
Iri
Iri Iri
-
-
-
Class hydra.ext.io.shex.syntax.CodeDecl_Alts extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.CodeDecl_Alts.Code extends CodeDecl_Alts implements Serializable
-
Serialized Fields
-
value
Code value
-
-
-
Class hydra.ext.io.shex.syntax.CodeDecl_Alts.Percnt extends CodeDecl_Alts implements Serializable
-
Class hydra.ext.io.shex.syntax.Datatype extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Iri value
-
-
-
Class hydra.ext.io.shex.syntax.Decimal extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.io.shex.syntax.Directive extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.Directive.BaseDecl extends Directive implements Serializable
-
Serialized Fields
-
value
BaseDecl value
-
-
-
Class hydra.ext.io.shex.syntax.Directive.PrefixDecl extends Directive implements Serializable
-
Serialized Fields
-
value
PrefixDecl value
-
-
-
Class hydra.ext.io.shex.syntax.Double_ extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.io.shex.syntax.Echar extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.io.shex.syntax.Exclusion extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Iri value
-
-
-
Class hydra.ext.io.shex.syntax.ExtraPropertySet extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.GroupTripleExpr extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.GroupTripleExpr.MultiElementGroup extends GroupTripleExpr implements Serializable
-
Serialized Fields
-
value
MultiElementGroup value
-
-
-
Class hydra.ext.io.shex.syntax.GroupTripleExpr.SingleElementGroup extends GroupTripleExpr implements Serializable
-
Serialized Fields
-
value
SingleElementGroup value
-
-
-
Class hydra.ext.io.shex.syntax.Hex extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.io.shex.syntax.Include extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
TripleExprLabel value
-
-
-
Class hydra.ext.io.shex.syntax.IncludeSet extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<ShapeExprLabel> value
-
-
-
Class hydra.ext.io.shex.syntax.InlineShapeAnd extends java.lang.Object implements Serializable
-
Serialized Fields
-
InlineShapeNot
InlineShapeNot InlineShapeNot
-
listOfSequence
ConsList<InlineShapeNot> listOfSequence
-
-
-
Class hydra.ext.io.shex.syntax.InlineShapeAtom extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.InlineShapeAtom_Sequence extends java.lang.Object implements Serializable
-
Serialized Fields
-
InlineShapeOrRef
Maybe<InlineShapeOrRef> InlineShapeOrRef
-
NodeConstraint
NodeConstraint NodeConstraint
-
-
-
Class hydra.ext.io.shex.syntax.InlineShapeAtom_Sequence2 extends java.lang.Object implements Serializable
-
Serialized Fields
-
InlineShapeOrRef
InlineShapeOrRef InlineShapeOrRef
-
NodeConstraint
Maybe<NodeConstraint> NodeConstraint
-
-
-
Class hydra.ext.io.shex.syntax.InlineShapeAtom.Period extends InlineShapeAtom implements Serializable
-
Class hydra.ext.io.shex.syntax.InlineShapeAtom.Sequence extends InlineShapeAtom implements Serializable
-
Serialized Fields
-
value
InlineShapeAtom_Sequence value
-
-
-
Class hydra.ext.io.shex.syntax.InlineShapeAtom.Sequence2 extends InlineShapeAtom implements Serializable
-
Serialized Fields
-
value
InlineShapeAtom_Sequence2 value
-
-
-
Class hydra.ext.io.shex.syntax.InlineShapeAtom.Sequence3 extends InlineShapeAtom implements Serializable
-
Serialized Fields
-
value
ShapeExpression value
-
-
-
Class hydra.ext.io.shex.syntax.InlineShapeDefinition extends java.lang.Object implements Serializable
-
Serialized Fields
-
listOfAlts
ConsList<InlineShapeDefinition_ListOfAlts_Elmt> listOfAlts
-
TripleExpression
Maybe<TripleExpression> TripleExpression
-
-
-
Class hydra.ext.io.shex.syntax.InlineShapeDefinition_ListOfAlts_Elmt extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.InlineShapeDefinition_ListOfAlts_Elmt.CLOSED extends InlineShapeDefinition_ListOfAlts_Elmt implements Serializable
-
Class hydra.ext.io.shex.syntax.InlineShapeDefinition_ListOfAlts_Elmt.ExtraPropertySet extends InlineShapeDefinition_ListOfAlts_Elmt implements Serializable
-
Serialized Fields
-
value
ExtraPropertySet value
-
-
-
Class hydra.ext.io.shex.syntax.InlineShapeDefinition_ListOfAlts_Elmt.IncludeSet extends InlineShapeDefinition_ListOfAlts_Elmt implements Serializable
-
Serialized Fields
-
value
IncludeSet value
-
-
-
Class hydra.ext.io.shex.syntax.InlineShapeExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
InlineShapeOr value
-
-
-
Class hydra.ext.io.shex.syntax.InlineShapeNot extends java.lang.Object implements Serializable
-
Serialized Fields
-
InlineShapeAtom
InlineShapeAtom InlineShapeAtom
-
NOT
Maybe<java.lang.Void> NOT
-
-
-
Class hydra.ext.io.shex.syntax.InlineShapeOr extends java.lang.Object implements Serializable
-
Serialized Fields
-
listOfSequence
ConsList<InlineShapeAnd> listOfSequence
-
ShapeAnd
ShapeAnd ShapeAnd
-
-
-
Class hydra.ext.io.shex.syntax.InlineShapeOrRef extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.InlineShapeOrRef.AtpNameLn extends InlineShapeOrRef implements Serializable
-
Serialized Fields
-
value
AtpNameLn value
-
-
-
Class hydra.ext.io.shex.syntax.InlineShapeOrRef.AtpNameNs extends InlineShapeOrRef implements Serializable
-
Serialized Fields
-
value
AtpNameNs value
-
-
-
Class hydra.ext.io.shex.syntax.InlineShapeOrRef.InlineShapeDefinition extends InlineShapeOrRef implements Serializable
-
Serialized Fields
-
value
InlineShapeDefinition value
-
-
-
Class hydra.ext.io.shex.syntax.InlineShapeOrRef.Sequence extends InlineShapeOrRef implements Serializable
-
Serialized Fields
-
value
ShapeExprLabel value
-
-
-
Class hydra.ext.io.shex.syntax.InnerTripleExpr extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.InnerTripleExpr.MultiElementGroup extends InnerTripleExpr implements Serializable
-
Serialized Fields
-
value
MultiElementGroup value
-
-
-
Class hydra.ext.io.shex.syntax.InnerTripleExpr.MultiElementOneOf extends InnerTripleExpr implements Serializable
-
Serialized Fields
-
value
MultiElementOneOf value
-
-
-
Class hydra.ext.io.shex.syntax.Integer_ extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.io.shex.syntax.Iri extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.Iri.IriRef extends Iri implements Serializable
-
Serialized Fields
-
value
IriRef value
-
-
-
Class hydra.ext.io.shex.syntax.Iri.PrefixedName extends Iri implements Serializable
-
Serialized Fields
-
value
PrefixedName value
-
-
-
Class hydra.ext.io.shex.syntax.IriRange extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.IriRange_Sequence extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.IriRange.Sequence extends IriRange implements Serializable
-
Serialized Fields
-
value
IriRange_Sequence value
-
-
-
Class hydra.ext.io.shex.syntax.IriRange.Sequence2 extends IriRange implements Serializable
-
Class hydra.ext.io.shex.syntax.IriRef extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<IriRef_Elmt> value
-
-
-
Class hydra.ext.io.shex.syntax.IriRef_Elmt extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.IriRef_Elmt.Regex extends IriRef_Elmt implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.io.shex.syntax.IriRef_Elmt.Uchar extends IriRef_Elmt implements Serializable
-
Serialized Fields
-
value
Uchar value
-
-
-
Class hydra.ext.io.shex.syntax.LangTag extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.io.shex.syntax.Literal extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.Literal.BooleanLiteral extends Literal implements Serializable
-
Serialized Fields
-
value
BooleanLiteral value
-
-
-
Class hydra.ext.io.shex.syntax.Literal.NumericLiteral extends Literal implements Serializable
-
Serialized Fields
-
value
NumericLiteral value
-
-
-
Class hydra.ext.io.shex.syntax.Literal.RdfLiteral extends Literal implements Serializable
-
Serialized Fields
-
value
RdfLiteral value
-
-
-
Class hydra.ext.io.shex.syntax.MultiElementGroup extends java.lang.Object implements Serializable
-
Serialized Fields
-
listOfSequence
ConsList<UnaryTripleExpr> listOfSequence
-
Semi
Maybe<java.lang.Void> Semi
-
UnaryTripleExpr
UnaryTripleExpr UnaryTripleExpr
-
-
-
Class hydra.ext.io.shex.syntax.MultiElementOneOf extends java.lang.Object implements Serializable
-
Serialized Fields
-
GroupTripleExpr
GroupTripleExpr GroupTripleExpr
-
listOfSequence
ConsList<GroupTripleExpr> listOfSequence
-
-
-
Class hydra.ext.io.shex.syntax.NodeConstraint extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.NodeConstraint_Sequence2 extends java.lang.Object implements Serializable
-
Serialized Fields
-
listOfStringFacet
ConsList<StringFacet> listOfStringFacet
-
NonLiteralKind
NonLiteralKind NonLiteralKind
-
-
-
Class hydra.ext.io.shex.syntax.NodeConstraint_Sequence3 extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.NodeConstraint_Sequence4 extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.NodeConstraint_Sequence5 extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.NodeConstraint.ListOfXsFacet extends NodeConstraint implements Serializable
-
Class hydra.ext.io.shex.syntax.NodeConstraint.Sequence extends NodeConstraint implements Serializable
-
Class hydra.ext.io.shex.syntax.NodeConstraint.Sequence2 extends NodeConstraint implements Serializable
-
Serialized Fields
-
value
NodeConstraint_Sequence2 value
-
-
-
Class hydra.ext.io.shex.syntax.NodeConstraint.Sequence3 extends NodeConstraint implements Serializable
-
Serialized Fields
-
value
NodeConstraint_Sequence3 value
-
-
-
Class hydra.ext.io.shex.syntax.NodeConstraint.Sequence4 extends NodeConstraint implements Serializable
-
Serialized Fields
-
value
NodeConstraint_Sequence4 value
-
-
-
Class hydra.ext.io.shex.syntax.NodeConstraint.Sequence5 extends NodeConstraint implements Serializable
-
Serialized Fields
-
value
NodeConstraint_Sequence5 value
-
-
-
Class hydra.ext.io.shex.syntax.NonLiteralKind extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.NonLiteralKind.BNODE extends NonLiteralKind implements Serializable
-
Class hydra.ext.io.shex.syntax.NonLiteralKind.IRI extends NonLiteralKind implements Serializable
-
Class hydra.ext.io.shex.syntax.NonLiteralKind.NONLITERAL extends NonLiteralKind implements Serializable
-
Class hydra.ext.io.shex.syntax.NotStartAction extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.NotStartAction_ShapeExprDecl extends java.lang.Object implements Serializable
-
Serialized Fields
-
alts
NotStartAction_ShapeExprDecl_Alts alts
-
ShapeExprLabel
ShapeExprLabel ShapeExprLabel
-
-
-
Class hydra.ext.io.shex.syntax.NotStartAction_ShapeExprDecl_Alts extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.NotStartAction_ShapeExprDecl_Alts.EXTERNAL extends NotStartAction_ShapeExprDecl_Alts implements Serializable
-
Class hydra.ext.io.shex.syntax.NotStartAction_ShapeExprDecl_Alts.ShapeExpression extends NotStartAction_ShapeExprDecl_Alts implements Serializable
-
Serialized Fields
-
value
ShapeExpression value
-
-
-
Class hydra.ext.io.shex.syntax.NotStartAction.ShapeExprDecl extends NotStartAction implements Serializable
-
Serialized Fields
-
value
NotStartAction_ShapeExprDecl value
-
-
-
Class hydra.ext.io.shex.syntax.NotStartAction.Start extends NotStartAction implements Serializable
-
Serialized Fields
-
value
ShapeExpression value
-
-
-
Class hydra.ext.io.shex.syntax.NumericFacet extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.NumericFacet_Sequence extends java.lang.Object implements Serializable
-
Serialized Fields
-
NumericLiteral
NumericLiteral NumericLiteral
-
NumericRange
NumericRange NumericRange
-
-
-
Class hydra.ext.io.shex.syntax.NumericFacet_Sequence2 extends java.lang.Object implements Serializable
-
Serialized Fields
-
Integer_
Integer_ Integer_
-
NumericLength
NumericLength NumericLength
-
-
-
Class hydra.ext.io.shex.syntax.NumericFacet.Sequence extends NumericFacet implements Serializable
-
Serialized Fields
-
value
NumericFacet_Sequence value
-
-
-
Class hydra.ext.io.shex.syntax.NumericFacet.Sequence2 extends NumericFacet implements Serializable
-
Serialized Fields
-
value
NumericFacet_Sequence2 value
-
-
-
Class hydra.ext.io.shex.syntax.NumericLength extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.NumericLength.FRACTIONDIGITS extends NumericLength implements Serializable
-
Class hydra.ext.io.shex.syntax.NumericLength.TOTALDIGITS extends NumericLength implements Serializable
-
Class hydra.ext.io.shex.syntax.NumericLiteral extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.NumericLiteral.Decimal extends NumericLiteral implements Serializable
-
Serialized Fields
-
value
Decimal value
-
-
-
Class hydra.ext.io.shex.syntax.NumericLiteral.Double_ extends NumericLiteral implements Serializable
-
Serialized Fields
-
value
Double_ value
-
-
-
Class hydra.ext.io.shex.syntax.NumericLiteral.Integer_ extends NumericLiteral implements Serializable
-
Serialized Fields
-
value
Integer_ value
-
-
-
Class hydra.ext.io.shex.syntax.NumericRange extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.NumericRange.MAXEXCLUSIVE extends NumericRange implements Serializable
-
Class hydra.ext.io.shex.syntax.NumericRange.MAXINCLUSIVE extends NumericRange implements Serializable
-
Class hydra.ext.io.shex.syntax.NumericRange.MINEXCLUSIVE extends NumericRange implements Serializable
-
Class hydra.ext.io.shex.syntax.NumericRange.MININCLUSIVE extends NumericRange implements Serializable
-
Class hydra.ext.io.shex.syntax.OneOfTripleExpr extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.OneOfTripleExpr.GroupTripleExpr extends OneOfTripleExpr implements Serializable
-
Serialized Fields
-
value
GroupTripleExpr value
-
-
-
Class hydra.ext.io.shex.syntax.OneOfTripleExpr.MultiElementOneOf extends OneOfTripleExpr implements Serializable
-
Serialized Fields
-
value
MultiElementOneOf value
-
-
-
Class hydra.ext.io.shex.syntax.Percent extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.Plx extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.Plx.Percent extends Plx implements Serializable
-
Serialized Fields
-
value
Percent value
-
-
-
Class hydra.ext.io.shex.syntax.Plx.PnLocalEsc extends Plx implements Serializable
-
Serialized Fields
-
value
PnLocalEsc value
-
-
-
Class hydra.ext.io.shex.syntax.PnameLn extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.PnameNs extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.PnChars extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.PnChars.Minus extends PnChars implements Serializable
-
Class hydra.ext.io.shex.syntax.PnChars.PnCharsU extends PnChars implements Serializable
-
Serialized Fields
-
value
PnCharsU value
-
-
-
Class hydra.ext.io.shex.syntax.PnChars.Regex extends PnChars implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.io.shex.syntax.PnCharsBase extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.PnCharsBase.Regex extends PnCharsBase implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.io.shex.syntax.PnCharsBase.Regex2 extends PnCharsBase implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.io.shex.syntax.PnCharsU extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.PnCharsU.Lowbar extends PnCharsU implements Serializable
-
Class hydra.ext.io.shex.syntax.PnCharsU.PnCharsBase extends PnCharsU implements Serializable
-
Serialized Fields
-
value
PnCharsBase value
-
-
-
Class hydra.ext.io.shex.syntax.PnLocal extends java.lang.Object implements Serializable
-
Serialized Fields
-
alts
PnLocal_Alts alts
-
Sequence
Maybe<PnLocal_Sequence_Option> Sequence
-
-
-
Class hydra.ext.io.shex.syntax.PnLocal_Alts extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.PnLocal_Alts.Colon extends PnLocal_Alts implements Serializable
-
Class hydra.ext.io.shex.syntax.PnLocal_Alts.Plx extends PnLocal_Alts implements Serializable
-
Serialized Fields
-
value
Plx value
-
-
-
Class hydra.ext.io.shex.syntax.PnLocal_Alts.PnCharsU extends PnLocal_Alts implements Serializable
-
Serialized Fields
-
value
PnCharsU value
-
-
-
Class hydra.ext.io.shex.syntax.PnLocal_Alts.Regex extends PnLocal_Alts implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.io.shex.syntax.PnLocal_Sequence_Option extends java.lang.Object implements Serializable
-
Serialized Fields
-
alts
PnLocal_Sequence_Option_Alts alts
-
listOfAlts
ConsList<PnLocal_Sequence_Option_ListOfAlts_Elmt> listOfAlts
-
-
-
Class hydra.ext.io.shex.syntax.PnLocal_Sequence_Option_Alts extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.PnLocal_Sequence_Option_Alts.Colon extends PnLocal_Sequence_Option_Alts implements Serializable
-
Class hydra.ext.io.shex.syntax.PnLocal_Sequence_Option_Alts.Plx extends PnLocal_Sequence_Option_Alts implements Serializable
-
Serialized Fields
-
value
Plx value
-
-
-
Class hydra.ext.io.shex.syntax.PnLocal_Sequence_Option_Alts.PnChars extends PnLocal_Sequence_Option_Alts implements Serializable
-
Serialized Fields
-
value
PnChars value
-
-
-
Class hydra.ext.io.shex.syntax.PnLocal_Sequence_Option_ListOfAlts_Elmt extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.PnLocal_Sequence_Option_ListOfAlts_Elmt.Colon extends PnLocal_Sequence_Option_ListOfAlts_Elmt implements Serializable
-
Class hydra.ext.io.shex.syntax.PnLocal_Sequence_Option_ListOfAlts_Elmt.Period extends PnLocal_Sequence_Option_ListOfAlts_Elmt implements Serializable
-
Class hydra.ext.io.shex.syntax.PnLocal_Sequence_Option_ListOfAlts_Elmt.Plx extends PnLocal_Sequence_Option_ListOfAlts_Elmt implements Serializable
-
Serialized Fields
-
value
Plx value
-
-
-
Class hydra.ext.io.shex.syntax.PnLocal_Sequence_Option_ListOfAlts_Elmt.PnChars extends PnLocal_Sequence_Option_ListOfAlts_Elmt implements Serializable
-
Serialized Fields
-
value
PnChars value
-
-
-
Class hydra.ext.io.shex.syntax.PnLocalEsc extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.io.shex.syntax.PnPrefix extends java.lang.Object implements Serializable
-
Serialized Fields
-
PnCharsBase
PnCharsBase PnCharsBase
-
Sequence
Maybe<PnPrefix_Sequence_Option> Sequence
-
-
-
Class hydra.ext.io.shex.syntax.PnPrefix_Sequence_Option extends java.lang.Object implements Serializable
-
Serialized Fields
-
alts
PnPrefix_Sequence_Option_Alts alts
-
PnChars
PnChars PnChars
-
-
-
Class hydra.ext.io.shex.syntax.PnPrefix_Sequence_Option_Alts extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.PnPrefix_Sequence_Option_Alts.Period extends PnPrefix_Sequence_Option_Alts implements Serializable
-
Class hydra.ext.io.shex.syntax.PnPrefix_Sequence_Option_Alts.PnChars extends PnPrefix_Sequence_Option_Alts implements Serializable
-
Serialized Fields
-
value
PnChars value
-
-
-
Class hydra.ext.io.shex.syntax.Predicate extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.Predicate.Iri extends Predicate implements Serializable
-
Serialized Fields
-
value
Iri value
-
-
-
Class hydra.ext.io.shex.syntax.Predicate.RdfType extends Predicate implements Serializable
-
Serialized Fields
-
value
RdfType value
-
-
-
Class hydra.ext.io.shex.syntax.PrefixDecl extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.PrefixedName extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.PrefixedName.PnameLn extends PrefixedName implements Serializable
-
Serialized Fields
-
value
PnameLn value
-
-
-
Class hydra.ext.io.shex.syntax.PrefixedName.PnameNs extends PrefixedName implements Serializable
-
Serialized Fields
-
value
PnameNs value
-
-
-
Class hydra.ext.io.shex.syntax.RdfLiteral extends java.lang.Object implements Serializable
-
Serialized Fields
-
Alts
Maybe<RdfLiteral_Alts_Option> Alts
-
String_
String_ String_
-
-
-
Class hydra.ext.io.shex.syntax.RdfLiteral_Alts_Option extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.RdfLiteral_Alts_Option.LangTag extends RdfLiteral_Alts_Option implements Serializable
-
Serialized Fields
-
value
LangTag value
-
-
-
Class hydra.ext.io.shex.syntax.RdfLiteral_Alts_Option.Sequence extends RdfLiteral_Alts_Option implements Serializable
-
Serialized Fields
-
value
Datatype value
-
-
-
Class hydra.ext.io.shex.syntax.RdfType extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Void value
-
-
-
Class hydra.ext.io.shex.syntax.Regexp extends java.lang.Object implements Serializable
-
Serialized Fields
-
listOfAlts
ConsList<Regexp_ListOfAlts_Elmt> listOfAlts
-
listOfRegex
ConsList<java.lang.String> listOfRegex
-
-
-
Class hydra.ext.io.shex.syntax.Regexp_ListOfAlts_Elmt extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.Regexp_ListOfAlts_Elmt.Regex extends Regexp_ListOfAlts_Elmt implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.io.shex.syntax.Regexp_ListOfAlts_Elmt.Sequence extends Regexp_ListOfAlts_Elmt implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.io.shex.syntax.Regexp_ListOfAlts_Elmt.Uchar extends Regexp_ListOfAlts_Elmt implements Serializable
-
Serialized Fields
-
value
Uchar value
-
-
-
Class hydra.ext.io.shex.syntax.RepeatRange extends java.lang.Object implements Serializable
-
Serialized Fields
-
Integer_
Integer_ Integer_
-
Sequence
Maybe<Maybe<Maybe<RepeatRange_Sequence_Option_Option_Option>>> Sequence
-
-
-
Class hydra.ext.io.shex.syntax.RepeatRange_Sequence_Option_Option_Option extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.RepeatRange_Sequence_Option_Option_Option.Ast extends RepeatRange_Sequence_Option_Option_Option implements Serializable
-
Class hydra.ext.io.shex.syntax.RepeatRange_Sequence_Option_Option_Option.Integer_ extends RepeatRange_Sequence_Option_Option_Option implements Serializable
-
Serialized Fields
-
value
Integer_ value
-
-
-
Class hydra.ext.io.shex.syntax.SemanticActions extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.SenseFlags extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Void value
-
-
-
Class hydra.ext.io.shex.syntax.ShapeAnd extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.ShapeAtom extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.ShapeAtom_Sequence extends java.lang.Object implements Serializable
-
Serialized Fields
-
NodeConstraint
NodeConstraint NodeConstraint
-
ShapeOrRef
Maybe<ShapeOrRef> ShapeOrRef
-
-
-
Class hydra.ext.io.shex.syntax.ShapeAtom.Period extends ShapeAtom implements Serializable
-
Class hydra.ext.io.shex.syntax.ShapeAtom.Sequence extends ShapeAtom implements Serializable
-
Serialized Fields
-
value
ShapeAtom_Sequence value
-
-
-
Class hydra.ext.io.shex.syntax.ShapeAtom.Sequence2 extends ShapeAtom implements Serializable
-
Serialized Fields
-
value
ShapeExpression value
-
-
-
Class hydra.ext.io.shex.syntax.ShapeAtom.ShapeOrRef extends ShapeAtom implements Serializable
-
Serialized Fields
-
value
ShapeOrRef value
-
-
-
Class hydra.ext.io.shex.syntax.ShapeDefinition extends java.lang.Object implements Serializable
-
Serialized Fields
-
listOfAlts
ConsList<ShapeDefinition_ListOfAlts_Elmt> listOfAlts
-
listOfAnnotation
ConsList<Annotation> listOfAnnotation
-
SemanticActions
SemanticActions SemanticActions
-
TripleExpression
Maybe<TripleExpression> TripleExpression
-
-
-
Class hydra.ext.io.shex.syntax.ShapeDefinition_ListOfAlts_Elmt extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.ShapeDefinition_ListOfAlts_Elmt.CLOSED extends ShapeDefinition_ListOfAlts_Elmt implements Serializable
-
Class hydra.ext.io.shex.syntax.ShapeDefinition_ListOfAlts_Elmt.ExtraPropertySet extends ShapeDefinition_ListOfAlts_Elmt implements Serializable
-
Serialized Fields
-
value
ExtraPropertySet value
-
-
-
Class hydra.ext.io.shex.syntax.ShapeDefinition_ListOfAlts_Elmt.IncludeSet extends ShapeDefinition_ListOfAlts_Elmt implements Serializable
-
Serialized Fields
-
value
IncludeSet value
-
-
-
Class hydra.ext.io.shex.syntax.ShapeExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ShapeOr value
-
-
-
Class hydra.ext.io.shex.syntax.ShapeExprLabel extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.ShapeExprLabel.BlankNode extends ShapeExprLabel implements Serializable
-
Serialized Fields
-
value
BlankNode value
-
-
-
Class hydra.ext.io.shex.syntax.ShapeExprLabel.Iri extends ShapeExprLabel implements Serializable
-
Serialized Fields
-
value
Iri value
-
-
-
Class hydra.ext.io.shex.syntax.ShapeNot extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.ShapeOr extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.ShapeOrRef extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.ShapeOrRef.AtpNameLn extends ShapeOrRef implements Serializable
-
Serialized Fields
-
value
AtpNameLn value
-
-
-
Class hydra.ext.io.shex.syntax.ShapeOrRef.AtpNameNs extends ShapeOrRef implements Serializable
-
Serialized Fields
-
value
AtpNameNs value
-
-
-
Class hydra.ext.io.shex.syntax.ShapeOrRef.Sequence extends ShapeOrRef implements Serializable
-
Serialized Fields
-
value
ShapeExprLabel value
-
-
-
Class hydra.ext.io.shex.syntax.ShapeOrRef.ShapeDefinition extends ShapeOrRef implements Serializable
-
Serialized Fields
-
value
ShapeDefinition value
-
-
-
Class hydra.ext.io.shex.syntax.ShexDoc extends java.lang.Object implements Serializable
-
Serialized Fields
-
listOfDirective
ConsList<Directive> listOfDirective
-
PrefixDecl
PrefixDecl PrefixDecl
-
Sequence
Maybe<ShexDoc_Sequence_Option> Sequence
-
-
-
Class hydra.ext.io.shex.syntax.ShexDoc_Sequence_Option extends java.lang.Object implements Serializable
-
Serialized Fields
-
alts
ShexDoc_Sequence_Option_Alts alts
-
listOfStatement
ConsList<Statement> listOfStatement
-
-
-
Class hydra.ext.io.shex.syntax.ShexDoc_Sequence_Option_Alts extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.ShexDoc_Sequence_Option_Alts.NotStartAction extends ShexDoc_Sequence_Option_Alts implements Serializable
-
Serialized Fields
-
value
NotStartAction value
-
-
-
Class hydra.ext.io.shex.syntax.ShexDoc_Sequence_Option_Alts.StartActions extends ShexDoc_Sequence_Option_Alts implements Serializable
-
Serialized Fields
-
value
StartActions value
-
-
-
Class hydra.ext.io.shex.syntax.SingleElementGroup extends java.lang.Object implements Serializable
-
Serialized Fields
-
Semi
Maybe<java.lang.Void> Semi
-
UnaryTripleExpr
UnaryTripleExpr UnaryTripleExpr
-
-
-
Class hydra.ext.io.shex.syntax.StartActions extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.Statement extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.Statement.Directive extends Statement implements Serializable
-
Serialized Fields
-
value
Directive value
-
-
-
Class hydra.ext.io.shex.syntax.Statement.NotStartAction extends Statement implements Serializable
-
Serialized Fields
-
value
NotStartAction value
-
-
-
Class hydra.ext.io.shex.syntax.String_ extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.String_.StringLiteral1 extends String_ implements Serializable
-
Serialized Fields
-
value
StringLiteral1 value
-
-
-
Class hydra.ext.io.shex.syntax.String_.StringLiteral2 extends String_ implements Serializable
-
Serialized Fields
-
value
StringLiteral2 value
-
-
-
Class hydra.ext.io.shex.syntax.String_.StringLiteralLong1 extends String_ implements Serializable
-
Serialized Fields
-
value
StringLiteralLong1 value
-
-
-
Class hydra.ext.io.shex.syntax.String_.StringLiteralLong2 extends String_ implements Serializable
-
Serialized Fields
-
value
StringLiteralLong2 value
-
-
-
Class hydra.ext.io.shex.syntax.StringFacet extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.StringFacet_Sequence extends java.lang.Object implements Serializable
-
Serialized Fields
-
Integer_
Integer_ Integer_
-
StringLength
StringLength StringLength
-
-
-
Class hydra.ext.io.shex.syntax.StringFacet.Regexp extends StringFacet implements Serializable
-
Serialized Fields
-
value
Regexp value
-
-
-
Class hydra.ext.io.shex.syntax.StringFacet.Sequence extends StringFacet implements Serializable
-
Serialized Fields
-
value
StringFacet_Sequence value
-
-
-
Class hydra.ext.io.shex.syntax.StringLength extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.StringLength.LENGTH extends StringLength implements Serializable
-
Class hydra.ext.io.shex.syntax.StringLength.MAXLENGTH extends StringLength implements Serializable
-
Class hydra.ext.io.shex.syntax.StringLength.MINLENGTH extends StringLength implements Serializable
-
Class hydra.ext.io.shex.syntax.StringLiteral1 extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<StringLiteral1_Elmt> value
-
-
-
Class hydra.ext.io.shex.syntax.StringLiteral1_Elmt extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.StringLiteral1_Elmt.Echar extends StringLiteral1_Elmt implements Serializable
-
Serialized Fields
-
value
Echar value
-
-
-
Class hydra.ext.io.shex.syntax.StringLiteral1_Elmt.Regex extends StringLiteral1_Elmt implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.io.shex.syntax.StringLiteral1_Elmt.Uchar extends StringLiteral1_Elmt implements Serializable
-
Serialized Fields
-
value
Uchar value
-
-
-
Class hydra.ext.io.shex.syntax.StringLiteral2 extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<StringLiteral2_Elmt> value
-
-
-
Class hydra.ext.io.shex.syntax.StringLiteral2_Elmt extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.StringLiteral2_Elmt.Echar extends StringLiteral2_Elmt implements Serializable
-
Serialized Fields
-
value
Echar value
-
-
-
Class hydra.ext.io.shex.syntax.StringLiteral2_Elmt.Regex extends StringLiteral2_Elmt implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.io.shex.syntax.StringLiteral2_Elmt.Uchar extends StringLiteral2_Elmt implements Serializable
-
Serialized Fields
-
value
Uchar value
-
-
-
Class hydra.ext.io.shex.syntax.StringLiteralLong1 extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<StringLiteralLong1_Elmt> value
-
-
-
Class hydra.ext.io.shex.syntax.StringLiteralLong1_Elmt extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.StringLiteralLong1_Elmt_Sequence extends java.lang.Object implements Serializable
-
Serialized Fields
-
Alts
Maybe<StringLiteralLong1_Elmt_Sequence_Alts_Option> Alts
-
regex
java.lang.String regex
-
-
-
Class hydra.ext.io.shex.syntax.StringLiteralLong1_Elmt_Sequence_Alts_Option extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.StringLiteralLong1_Elmt_Sequence_Alts_Option_Sequence extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.StringLiteralLong1_Elmt_Sequence_Alts_Option.Apos extends StringLiteralLong1_Elmt_Sequence_Alts_Option implements Serializable
-
Class hydra.ext.io.shex.syntax.StringLiteralLong1_Elmt_Sequence_Alts_Option.Sequence extends StringLiteralLong1_Elmt_Sequence_Alts_Option implements Serializable
-
Serialized Fields
-
-
Class hydra.ext.io.shex.syntax.StringLiteralLong1_Elmt.Echar extends StringLiteralLong1_Elmt implements Serializable
-
Serialized Fields
-
value
Echar value
-
-
-
Class hydra.ext.io.shex.syntax.StringLiteralLong1_Elmt.Sequence extends StringLiteralLong1_Elmt implements Serializable
-
Serialized Fields
-
value
StringLiteralLong1_Elmt_Sequence value
-
-
-
Class hydra.ext.io.shex.syntax.StringLiteralLong1_Elmt.Uchar extends StringLiteralLong1_Elmt implements Serializable
-
Serialized Fields
-
value
Uchar value
-
-
-
Class hydra.ext.io.shex.syntax.StringLiteralLong2 extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<StringLiteralLong2_Elmt> value
-
-
-
Class hydra.ext.io.shex.syntax.StringLiteralLong2_Elmt extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.StringLiteralLong2_Elmt_Sequence extends java.lang.Object implements Serializable
-
Serialized Fields
-
Alts
Maybe<StringLiteralLong2_Elmt_Sequence_Alts_Option> Alts
-
regex
java.lang.String regex
-
-
-
Class hydra.ext.io.shex.syntax.StringLiteralLong2_Elmt_Sequence_Alts_Option extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.StringLiteralLong2_Elmt_Sequence_Alts_Option_Sequence extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.StringLiteralLong2_Elmt_Sequence_Alts_Option.Quot extends StringLiteralLong2_Elmt_Sequence_Alts_Option implements Serializable
-
Class hydra.ext.io.shex.syntax.StringLiteralLong2_Elmt_Sequence_Alts_Option.Sequence extends StringLiteralLong2_Elmt_Sequence_Alts_Option implements Serializable
-
Serialized Fields
-
-
Class hydra.ext.io.shex.syntax.StringLiteralLong2_Elmt.Echar extends StringLiteralLong2_Elmt implements Serializable
-
Serialized Fields
-
value
Echar value
-
-
-
Class hydra.ext.io.shex.syntax.StringLiteralLong2_Elmt.Sequence extends StringLiteralLong2_Elmt implements Serializable
-
Serialized Fields
-
value
StringLiteralLong2_Elmt_Sequence value
-
-
-
Class hydra.ext.io.shex.syntax.StringLiteralLong2_Elmt.Uchar extends StringLiteralLong2_Elmt implements Serializable
-
Serialized Fields
-
value
Uchar value
-
-
-
Class hydra.ext.io.shex.syntax.TripleConstraint extends java.lang.Object implements Serializable
-
Serialized Fields
-
Cardinality
Maybe<Cardinality> Cardinality
-
InlineShapeExpression
InlineShapeExpression InlineShapeExpression
-
listOfAnnotation
ConsList<Annotation> listOfAnnotation
-
Predicate
Predicate Predicate
-
SemanticActions
SemanticActions SemanticActions
-
SenseFlags
Maybe<SenseFlags> SenseFlags
-
-
-
Class hydra.ext.io.shex.syntax.TripleExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
OneOfTripleExpr value
-
-
-
Class hydra.ext.io.shex.syntax.TripleExprLabel extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.TripleExprLabel.BlankNode extends TripleExprLabel implements Serializable
-
Serialized Fields
-
value
BlankNode value
-
-
-
Class hydra.ext.io.shex.syntax.TripleExprLabel.Iri extends TripleExprLabel implements Serializable
-
Serialized Fields
-
value
Iri value
-
-
-
Class hydra.ext.io.shex.syntax.Uchar extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.Uchar_Sequence extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.Uchar_Sequence2 extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.Uchar.Sequence extends Uchar implements Serializable
-
Serialized Fields
-
value
Uchar_Sequence value
-
-
-
Class hydra.ext.io.shex.syntax.Uchar.Sequence2 extends Uchar implements Serializable
-
Serialized Fields
-
value
Uchar_Sequence2 value
-
-
-
Class hydra.ext.io.shex.syntax.UnaryTripleExpr extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.UnaryTripleExpr_Sequence extends java.lang.Object implements Serializable
-
Serialized Fields
-
alts
UnaryTripleExpr_Sequence_Alts alts
-
Sequence
Maybe<TripleExprLabel> Sequence
-
-
-
Class hydra.ext.io.shex.syntax.UnaryTripleExpr_Sequence_Alts extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.UnaryTripleExpr_Sequence_Alts.BracketedTripleExpr extends UnaryTripleExpr_Sequence_Alts implements Serializable
-
Serialized Fields
-
value
BracketedTripleExpr value
-
-
-
Class hydra.ext.io.shex.syntax.UnaryTripleExpr_Sequence_Alts.TripleConstraint extends UnaryTripleExpr_Sequence_Alts implements Serializable
-
Serialized Fields
-
value
TripleConstraint value
-
-
-
Class hydra.ext.io.shex.syntax.UnaryTripleExpr.Include extends UnaryTripleExpr implements Serializable
-
Serialized Fields
-
value
Include value
-
-
-
Class hydra.ext.io.shex.syntax.UnaryTripleExpr.Sequence extends UnaryTripleExpr implements Serializable
-
Serialized Fields
-
value
UnaryTripleExpr_Sequence value
-
-
-
Class hydra.ext.io.shex.syntax.ValueSet extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<ValueSetValue> value
-
-
-
Class hydra.ext.io.shex.syntax.ValueSetValue extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.ValueSetValue.IriRange extends ValueSetValue implements Serializable
-
Serialized Fields
-
value
IriRange value
-
-
-
Class hydra.ext.io.shex.syntax.ValueSetValue.Literal extends ValueSetValue implements Serializable
-
Serialized Fields
-
value
Literal value
-
-
-
Class hydra.ext.io.shex.syntax.XsFacet extends java.lang.Object implements Serializable
-
Class hydra.ext.io.shex.syntax.XsFacet.NumericFacet extends XsFacet implements Serializable
-
Serialized Fields
-
value
NumericFacet value
-
-
-
Class hydra.ext.io.shex.syntax.XsFacet.StringFacet extends XsFacet implements Serializable
-
Serialized Fields
-
value
StringFacet value
-
-
-
-
Package hydra.ext.java.environment
-
Class hydra.ext.java.environment.Aliases extends java.lang.Object implements Serializable
-
Serialized Fields
-
branchVars
PersistentSet<Name> branchVars
Variables bound in pattern matching branches -
currentNamespace
Namespace currentNamespace
Current module namespace context -
inScopeJavaVars
PersistentSet<Name> inScopeJavaVars
All in-scope Java variable names (for avoiding lambda parameter shadowing) -
inScopeTypeParams
PersistentSet<Name> inScopeTypeParams
Type parameters that are in scope (from method-level type parameters) -
lambdaVars
PersistentSet<Name> lambdaVars
Lambda-bound variables (including hoisted captures with qualified names) -
methodCodomain
Maybe<Type> methodCodomain
The enclosing method's codomain (return type), used for casting pair expressions -
packages
PersistentMap<Namespace,PackageName> packages
Maps namespaces to Java package names -
polymorphicLocals
PersistentSet<Name> polymorphicLocals
Local variables that have polymorphic types (declared with raw types) -
recursiveVars
PersistentSet<Name> recursiveVars
Variables that are self-recursive -
thunkedVars
PersistentSet<Name> thunkedVars
Variables that have been thunked (wrapped in Supplier) for lazy evaluation -
trustedTypeVars
PersistentSet<Name> trustedTypeVars
Type variables that actually appear in the method's formal parameter types -
typeVarSubst
PersistentMap<Name,Name> typeVarSubst
Type variable substitution: maps fresh inference variable names to canonical scheme variable names -
varRenames
PersistentMap<Name,Name> varRenames
Variable renames for avoiding shadowing (maps Hydra name to Java name)
-
-
-
Class hydra.ext.java.environment.JavaEnvironment extends java.lang.Object implements Serializable
-
Class hydra.ext.java.environment.JavaFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
supportsDiamondOperator
java.lang.Boolean supportsDiamondOperator
Whether the diamond operator (<>) is supported (Java 7+)
-
-
-
Class hydra.ext.java.environment.JavaSymbolClass extends java.lang.Object implements Serializable
-
Class hydra.ext.java.environment.JavaSymbolClass.Constant extends JavaSymbolClass implements Serializable
-
Class hydra.ext.java.environment.JavaSymbolClass.HoistedLambda extends JavaSymbolClass implements Serializable
-
Serialized Fields
-
value
java.lang.Integer value
-
-
-
Class hydra.ext.java.environment.JavaSymbolClass.LocalVariable extends JavaSymbolClass implements Serializable
-
Class hydra.ext.java.environment.JavaSymbolClass.NullaryFunction extends JavaSymbolClass implements Serializable
-
Class hydra.ext.java.environment.JavaSymbolClass.UnaryFunction extends JavaSymbolClass implements Serializable
-
-
Package hydra.ext.java.syntax
-
Class hydra.ext.java.syntax.AdditionalBound extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
InterfaceType value
-
-
-
Class hydra.ext.java.syntax.AdditiveExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.AdditiveExpression_Binary extends java.lang.Object implements Serializable
-
Serialized Fields
-
lhs
AdditiveExpression lhs
-
rhs
MultiplicativeExpression rhs
-
-
-
Class hydra.ext.java.syntax.AdditiveExpression.Minus extends AdditiveExpression implements Serializable
-
Serialized Fields
-
value
AdditiveExpression_Binary value
-
-
-
Class hydra.ext.java.syntax.AdditiveExpression.Plus extends AdditiveExpression implements Serializable
-
Serialized Fields
-
value
AdditiveExpression_Binary value
-
-
-
Class hydra.ext.java.syntax.AdditiveExpression.Unary extends AdditiveExpression implements Serializable
-
Serialized Fields
-
value
MultiplicativeExpression value
-
-
-
Class hydra.ext.java.syntax.AmbiguousName extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<Identifier> value
-
-
-
Class hydra.ext.java.syntax.AndExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<EqualityExpression> value
-
-
-
Class hydra.ext.java.syntax.AnnotatedIdentifier extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
identifier
Identifier identifier
-
-
-
Class hydra.ext.java.syntax.Annotation extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.Annotation.Marker extends Annotation implements Serializable
-
Serialized Fields
-
value
MarkerAnnotation value
-
-
-
Class hydra.ext.java.syntax.Annotation.Normal extends Annotation implements Serializable
-
Serialized Fields
-
value
NormalAnnotation value
-
-
-
Class hydra.ext.java.syntax.Annotation.SingleElement extends Annotation implements Serializable
-
Serialized Fields
-
value
SingleElementAnnotation value
-
-
-
Class hydra.ext.java.syntax.AnnotationTypeBody extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<ConsList<AnnotationTypeMemberDeclaration>> value
-
-
-
Class hydra.ext.java.syntax.AnnotationTypeDeclaration extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
AnnotationTypeBody body
-
identifier
TypeIdentifier identifier
-
modifiers
ConsList<InterfaceModifier> modifiers
-
-
-
Class hydra.ext.java.syntax.AnnotationTypeElementDeclaration extends java.lang.Object implements Serializable
-
Serialized Fields
-
default_
Maybe<DefaultValue> default_
-
dims
Maybe<Dims> dims
-
identifier
Identifier identifier
-
modifiers
ConsList<AnnotationTypeElementModifier> modifiers
-
type
UnannType type
-
-
-
Class hydra.ext.java.syntax.AnnotationTypeElementModifier extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.AnnotationTypeElementModifier.Abstract extends AnnotationTypeElementModifier implements Serializable
-
Class hydra.ext.java.syntax.AnnotationTypeElementModifier.Public extends AnnotationTypeElementModifier implements Serializable
-
Serialized Fields
-
value
Annotation value
-
-
-
Class hydra.ext.java.syntax.AnnotationTypeMemberDeclaration extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.AnnotationTypeMemberDeclaration.AnnotationType extends AnnotationTypeMemberDeclaration implements Serializable
-
Serialized Fields
-
value
AnnotationTypeElementDeclaration value
-
-
-
Class hydra.ext.java.syntax.AnnotationTypeMemberDeclaration.Class_ extends AnnotationTypeMemberDeclaration implements Serializable
-
Serialized Fields
-
value
ClassDeclaration value
-
-
-
Class hydra.ext.java.syntax.AnnotationTypeMemberDeclaration.Constant extends AnnotationTypeMemberDeclaration implements Serializable
-
Serialized Fields
-
value
ConstantDeclaration value
-
-
-
Class hydra.ext.java.syntax.AnnotationTypeMemberDeclaration.Interface extends AnnotationTypeMemberDeclaration implements Serializable
-
Serialized Fields
-
value
InterfaceDeclaration value
-
-
-
Class hydra.ext.java.syntax.ArrayAccess extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
Maybe<Expression> expression
-
variant
ArrayAccess_Variant variant
-
-
-
Class hydra.ext.java.syntax.ArrayAccess_Variant extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ArrayAccess_Variant.Name extends ArrayAccess_Variant implements Serializable
-
Serialized Fields
-
value
ExpressionName value
-
-
-
Class hydra.ext.java.syntax.ArrayAccess_Variant.Primary extends ArrayAccess_Variant implements Serializable
-
Serialized Fields
-
value
PrimaryNoNewArrayExpression value
-
-
-
Class hydra.ext.java.syntax.ArrayCreationExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ArrayCreationExpression_ClassOrInterface extends java.lang.Object implements Serializable
-
Serialized Fields
-
dimExprs
ConsList<DimExpr> dimExprs
-
dims
Maybe<Dims> dims
-
type
ClassOrInterfaceType type
-
-
-
Class hydra.ext.java.syntax.ArrayCreationExpression_ClassOrInterfaceArray extends java.lang.Object implements Serializable
-
Serialized Fields
-
array
ArrayInitializer array
-
dims
ConsList<Dims> dims
-
type
ClassOrInterfaceType type
-
-
-
Class hydra.ext.java.syntax.ArrayCreationExpression_Primitive extends java.lang.Object implements Serializable
-
Serialized Fields
-
dimExprs
ConsList<DimExpr> dimExprs
-
dims
Maybe<Dims> dims
-
type
PrimitiveTypeWithAnnotations type
-
-
-
Class hydra.ext.java.syntax.ArrayCreationExpression_PrimitiveArray extends java.lang.Object implements Serializable
-
Serialized Fields
-
array
ArrayInitializer array
-
dims
ConsList<Dims> dims
-
type
PrimitiveTypeWithAnnotations type
-
-
-
Class hydra.ext.java.syntax.ArrayCreationExpression.ClassOrInterface extends ArrayCreationExpression implements Serializable
-
Serialized Fields
-
value
ArrayCreationExpression_ClassOrInterface value
-
-
-
Class hydra.ext.java.syntax.ArrayCreationExpression.ClassOrInterfaceArray extends ArrayCreationExpression implements Serializable
-
Serialized Fields
-
value
ArrayCreationExpression_ClassOrInterfaceArray value
-
-
-
Class hydra.ext.java.syntax.ArrayCreationExpression.Primitive extends ArrayCreationExpression implements Serializable
-
Serialized Fields
-
value
ArrayCreationExpression_Primitive value
-
-
-
Class hydra.ext.java.syntax.ArrayCreationExpression.PrimitiveArray extends ArrayCreationExpression implements Serializable
-
Serialized Fields
-
value
ArrayCreationExpression_PrimitiveArray value
-
-
-
Class hydra.ext.java.syntax.ArrayInitializer extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<ConsList<VariableInitializer>> value
-
-
-
Class hydra.ext.java.syntax.ArrayType extends java.lang.Object implements Serializable
-
Serialized Fields
-
dims
Dims dims
-
variant
ArrayType_Variant variant
-
-
-
Class hydra.ext.java.syntax.ArrayType_Variant extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ArrayType_Variant.ClassOrInterface extends ArrayType_Variant implements Serializable
-
Serialized Fields
-
value
ClassOrInterfaceType value
-
-
-
Class hydra.ext.java.syntax.ArrayType_Variant.Primitive extends ArrayType_Variant implements Serializable
-
Serialized Fields
-
value
PrimitiveTypeWithAnnotations value
-
-
-
Class hydra.ext.java.syntax.ArrayType_Variant.Variable extends ArrayType_Variant implements Serializable
-
Serialized Fields
-
value
TypeVariable value
-
-
-
Class hydra.ext.java.syntax.AssertStatement extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.AssertStatement_Pair extends java.lang.Object implements Serializable
-
Serialized Fields
-
first
Expression first
-
second
Expression second
-
-
-
Class hydra.ext.java.syntax.AssertStatement.Pair extends AssertStatement implements Serializable
-
Serialized Fields
-
value
AssertStatement_Pair value
-
-
-
Class hydra.ext.java.syntax.AssertStatement.Single extends AssertStatement implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.java.syntax.Assignment extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
Expression expression
-
lhs
LeftHandSide lhs
-
op
AssignmentOperator op
-
-
-
Class hydra.ext.java.syntax.AssignmentExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.AssignmentExpression.Assignment extends AssignmentExpression implements Serializable
-
Serialized Fields
-
value
Assignment value
-
-
-
Class hydra.ext.java.syntax.AssignmentExpression.Conditional extends AssignmentExpression implements Serializable
-
Serialized Fields
-
value
ConditionalExpression value
-
-
-
Class hydra.ext.java.syntax.AssignmentOperator extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.AssignmentOperator.And extends AssignmentOperator implements Serializable
-
Class hydra.ext.java.syntax.AssignmentOperator.Div extends AssignmentOperator implements Serializable
-
Class hydra.ext.java.syntax.AssignmentOperator.Minus extends AssignmentOperator implements Serializable
-
Class hydra.ext.java.syntax.AssignmentOperator.Mod extends AssignmentOperator implements Serializable
-
Class hydra.ext.java.syntax.AssignmentOperator.Or extends AssignmentOperator implements Serializable
-
Class hydra.ext.java.syntax.AssignmentOperator.Plus extends AssignmentOperator implements Serializable
-
Class hydra.ext.java.syntax.AssignmentOperator.ShiftLeft extends AssignmentOperator implements Serializable
-
Class hydra.ext.java.syntax.AssignmentOperator.ShiftRight extends AssignmentOperator implements Serializable
-
Class hydra.ext.java.syntax.AssignmentOperator.ShiftRightZeroFill extends AssignmentOperator implements Serializable
-
Class hydra.ext.java.syntax.AssignmentOperator.Simple extends AssignmentOperator implements Serializable
-
Class hydra.ext.java.syntax.AssignmentOperator.Times extends AssignmentOperator implements Serializable
-
Class hydra.ext.java.syntax.AssignmentOperator.Xor extends AssignmentOperator implements Serializable
-
Class hydra.ext.java.syntax.BasicForStatement extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.BasicForStatementNoShortIf extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
StatementNoShortIf body
-
cond
ForCond cond
-
-
-
Class hydra.ext.java.syntax.Block extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<BlockStatement> value
-
-
-
Class hydra.ext.java.syntax.BlockStatement extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.BlockStatement.Class_ extends BlockStatement implements Serializable
-
Serialized Fields
-
value
ClassDeclaration value
-
-
-
Class hydra.ext.java.syntax.BlockStatement.LocalVariableDeclaration extends BlockStatement implements Serializable
-
Serialized Fields
-
value
LocalVariableDeclarationStatement value
-
-
-
Class hydra.ext.java.syntax.BlockStatement.Statement extends BlockStatement implements Serializable
-
Serialized Fields
-
value
Statement value
-
-
-
Class hydra.ext.java.syntax.BooleanArray extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.BooleanArray.Array extends BooleanArray implements Serializable
-
Serialized Fields
-
value
BooleanArray value
-
-
-
Class hydra.ext.java.syntax.BooleanArray.Simple extends BooleanArray implements Serializable
-
Class hydra.ext.java.syntax.BreakStatement extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Maybe<Identifier> value
-
-
-
Class hydra.ext.java.syntax.CastExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.CastExpression_Lambda extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
LambdaExpression expression
-
refAndBounds
CastExpression_RefAndBounds refAndBounds
-
-
-
Class hydra.ext.java.syntax.CastExpression_NotPlusMinus extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
UnaryExpression expression
-
refAndBounds
CastExpression_RefAndBounds refAndBounds
-
-
-
Class hydra.ext.java.syntax.CastExpression_Primitive extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
UnaryExpression expression
-
type
PrimitiveTypeWithAnnotations type
-
-
-
Class hydra.ext.java.syntax.CastExpression_RefAndBounds extends java.lang.Object implements Serializable
-
Serialized Fields
-
bounds
ConsList<AdditionalBound> bounds
-
type
ReferenceType type
-
-
-
Class hydra.ext.java.syntax.CastExpression.Lambda extends CastExpression implements Serializable
-
Serialized Fields
-
value
CastExpression_Lambda value
-
-
-
Class hydra.ext.java.syntax.CastExpression.NotPlusMinus extends CastExpression implements Serializable
-
Serialized Fields
-
value
CastExpression_NotPlusMinus value
-
-
-
Class hydra.ext.java.syntax.CastExpression.Primitive extends CastExpression implements Serializable
-
Serialized Fields
-
value
CastExpression_Primitive value
-
-
-
Class hydra.ext.java.syntax.CatchClause extends java.lang.Object implements Serializable
-
Serialized Fields
-
block
Block block
-
parameter
Maybe<CatchFormalParameter> parameter
-
-
-
Class hydra.ext.java.syntax.Catches extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<CatchClause> value
-
-
-
Class hydra.ext.java.syntax.CatchFormalParameter extends java.lang.Object implements Serializable
-
Serialized Fields
-
id
VariableDeclaratorId id
-
modifiers
ConsList<VariableModifier> modifiers
-
type
CatchType type
-
-
-
Class hydra.ext.java.syntax.CatchType extends java.lang.Object implements Serializable
-
Serialized Fields
-
type
UnannClassType type
-
types
ConsList<ClassType> types
-
-
-
Class hydra.ext.java.syntax.ClassBody extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<ClassBodyDeclarationWithComments> value
-
-
-
Class hydra.ext.java.syntax.ClassBodyDeclaration extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ClassBodyDeclaration.ClassMember extends ClassBodyDeclaration implements Serializable
-
Serialized Fields
-
value
ClassMemberDeclaration value
-
-
-
Class hydra.ext.java.syntax.ClassBodyDeclaration.ConstructorDeclaration extends ClassBodyDeclaration implements Serializable
-
Serialized Fields
-
value
ConstructorDeclaration value
-
-
-
Class hydra.ext.java.syntax.ClassBodyDeclaration.InstanceInitializer extends ClassBodyDeclaration implements Serializable
-
Serialized Fields
-
value
InstanceInitializer value
-
-
-
Class hydra.ext.java.syntax.ClassBodyDeclaration.StaticInitializer extends ClassBodyDeclaration implements Serializable
-
Serialized Fields
-
value
StaticInitializer value
-
-
-
Class hydra.ext.java.syntax.ClassBodyDeclarationWithComments extends java.lang.Object implements Serializable
-
Serialized Fields
-
comments
Maybe<java.lang.String> comments
-
value
ClassBodyDeclaration value
-
-
-
Class hydra.ext.java.syntax.ClassDeclaration extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ClassDeclaration.Enum_ extends ClassDeclaration implements Serializable
-
Serialized Fields
-
value
EnumDeclaration value
-
-
-
Class hydra.ext.java.syntax.ClassDeclaration.Normal extends ClassDeclaration implements Serializable
-
Serialized Fields
-
value
NormalClassDeclaration value
-
-
-
Class hydra.ext.java.syntax.ClassInstanceCreationExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
UnqualifiedClassInstanceCreationExpression expression
-
qualifier
Maybe<ClassInstanceCreationExpression_Qualifier> qualifier
-
-
-
Class hydra.ext.java.syntax.ClassInstanceCreationExpression_Qualifier extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ClassInstanceCreationExpression_Qualifier.Expression extends ClassInstanceCreationExpression_Qualifier implements Serializable
-
Serialized Fields
-
value
ExpressionName value
-
-
-
Class hydra.ext.java.syntax.ClassInstanceCreationExpression_Qualifier.Primary extends ClassInstanceCreationExpression_Qualifier implements Serializable
-
Serialized Fields
-
value
Primary value
-
-
-
Class hydra.ext.java.syntax.ClassLiteral extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ClassLiteral.Boolean_ extends ClassLiteral implements Serializable
-
Serialized Fields
-
value
BooleanArray value
-
-
-
Class hydra.ext.java.syntax.ClassLiteral.NumericType extends ClassLiteral implements Serializable
-
Serialized Fields
-
value
NumericTypeArray value
-
-
-
Class hydra.ext.java.syntax.ClassLiteral.Type extends ClassLiteral implements Serializable
-
Serialized Fields
-
value
TypeNameArray value
-
-
-
Class hydra.ext.java.syntax.ClassLiteral.Void_ extends ClassLiteral implements Serializable
-
Class hydra.ext.java.syntax.ClassMemberDeclaration extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ClassMemberDeclaration.Class_ extends ClassMemberDeclaration implements Serializable
-
Serialized Fields
-
value
ClassDeclaration value
-
-
-
Class hydra.ext.java.syntax.ClassMemberDeclaration.Field extends ClassMemberDeclaration implements Serializable
-
Serialized Fields
-
value
FieldDeclaration value
-
-
-
Class hydra.ext.java.syntax.ClassMemberDeclaration.Interface extends ClassMemberDeclaration implements Serializable
-
Serialized Fields
-
value
InterfaceDeclaration value
-
-
-
Class hydra.ext.java.syntax.ClassMemberDeclaration.Method extends ClassMemberDeclaration implements Serializable
-
Serialized Fields
-
value
MethodDeclaration value
-
-
-
Class hydra.ext.java.syntax.ClassMemberDeclaration.None extends ClassMemberDeclaration implements Serializable
-
Class hydra.ext.java.syntax.ClassModifier extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ClassModifier.Abstract extends ClassModifier implements Serializable
-
Class hydra.ext.java.syntax.ClassModifier.Annotation extends ClassModifier implements Serializable
-
Serialized Fields
-
value
Annotation value
-
-
-
Class hydra.ext.java.syntax.ClassModifier.Final extends ClassModifier implements Serializable
-
Class hydra.ext.java.syntax.ClassModifier.Private extends ClassModifier implements Serializable
-
Class hydra.ext.java.syntax.ClassModifier.Protected extends ClassModifier implements Serializable
-
Class hydra.ext.java.syntax.ClassModifier.Public extends ClassModifier implements Serializable
-
Class hydra.ext.java.syntax.ClassModifier.Static extends ClassModifier implements Serializable
-
Class hydra.ext.java.syntax.ClassModifier.Strictfp extends ClassModifier implements Serializable
-
Class hydra.ext.java.syntax.ClassOrInterfaceType extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ClassOrInterfaceType.Class_ extends ClassOrInterfaceType implements Serializable
-
Serialized Fields
-
value
ClassType value
-
-
-
Class hydra.ext.java.syntax.ClassOrInterfaceType.Interface extends ClassOrInterfaceType implements Serializable
-
Serialized Fields
-
value
InterfaceType value
-
-
-
Class hydra.ext.java.syntax.ClassOrInterfaceTypeToInstantiate extends java.lang.Object implements Serializable
-
Serialized Fields
-
identifiers
ConsList<AnnotatedIdentifier> identifiers
-
typeArguments
Maybe<TypeArgumentsOrDiamond> typeArguments
-
-
-
Class hydra.ext.java.syntax.ClassType extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
arguments
ConsList<TypeArgument> arguments
-
identifier
TypeIdentifier identifier
-
qualifier
ClassTypeQualifier qualifier
-
-
-
Class hydra.ext.java.syntax.ClassTypeQualifier extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ClassTypeQualifier.None extends ClassTypeQualifier implements Serializable
-
Class hydra.ext.java.syntax.ClassTypeQualifier.Package_ extends ClassTypeQualifier implements Serializable
-
Serialized Fields
-
value
PackageName value
-
-
-
Class hydra.ext.java.syntax.ClassTypeQualifier.Parent extends ClassTypeQualifier implements Serializable
-
Serialized Fields
-
value
ClassOrInterfaceType value
-
-
-
Class hydra.ext.java.syntax.CompilationUnit extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.CompilationUnit.Modular extends CompilationUnit implements Serializable
-
Serialized Fields
-
value
ModularCompilationUnit value
-
-
-
Class hydra.ext.java.syntax.CompilationUnit.Ordinary extends CompilationUnit implements Serializable
-
Serialized Fields
-
value
OrdinaryCompilationUnit value
-
-
-
Class hydra.ext.java.syntax.ConditionalAndExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<InclusiveOrExpression> value
-
-
-
Class hydra.ext.java.syntax.ConditionalExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ConditionalExpression_TernaryCond extends java.lang.Object implements Serializable
-
Serialized Fields
-
cond
ConditionalOrExpression cond
-
ifFalse
ConditionalExpression ifFalse
-
ifTrue
Expression ifTrue
-
-
-
Class hydra.ext.java.syntax.ConditionalExpression_TernaryLambda extends java.lang.Object implements Serializable
-
Serialized Fields
-
cond
ConditionalOrExpression cond
-
ifFalse
LambdaExpression ifFalse
-
ifTrue
Expression ifTrue
-
-
-
Class hydra.ext.java.syntax.ConditionalExpression.Simple extends ConditionalExpression implements Serializable
-
Serialized Fields
-
value
ConditionalOrExpression value
-
-
-
Class hydra.ext.java.syntax.ConditionalExpression.TernaryCond extends ConditionalExpression implements Serializable
-
Serialized Fields
-
value
ConditionalExpression_TernaryCond value
-
-
-
Class hydra.ext.java.syntax.ConditionalExpression.TernaryLambda extends ConditionalExpression implements Serializable
-
Serialized Fields
-
value
ConditionalExpression_TernaryLambda value
-
-
-
Class hydra.ext.java.syntax.ConditionalOrExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<ConditionalAndExpression> value
-
-
-
Class hydra.ext.java.syntax.ConstantDeclaration extends java.lang.Object implements Serializable
-
Serialized Fields
-
modifiers
ConsList<ConstantModifier> modifiers
-
type
UnannType type
-
variables
ConsList<VariableDeclarator> variables
-
-
-
Class hydra.ext.java.syntax.ConstantExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.java.syntax.ConstantModifier extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ConstantModifier.Annotation extends ConstantModifier implements Serializable
-
Serialized Fields
-
value
Annotation value
-
-
-
Class hydra.ext.java.syntax.ConstantModifier.Final extends ConstantModifier implements Serializable
-
Class hydra.ext.java.syntax.ConstantModifier.Public extends ConstantModifier implements Serializable
-
Class hydra.ext.java.syntax.ConstantModifier.Static extends ConstantModifier implements Serializable
-
Class hydra.ext.java.syntax.ConstructorBody extends java.lang.Object implements Serializable
-
Serialized Fields
-
invocation
Maybe<ExplicitConstructorInvocation> invocation
-
statements
ConsList<BlockStatement> statements
-
-
-
Class hydra.ext.java.syntax.ConstructorDeclaration extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
ConstructorBody body
-
constructor
ConstructorDeclarator constructor
-
modifiers
ConsList<ConstructorModifier> modifiers
-
throws_
Maybe<Throws> throws_
-
-
-
Class hydra.ext.java.syntax.ConstructorDeclarator extends java.lang.Object implements Serializable
-
Serialized Fields
-
formalParameters
ConsList<FormalParameter> formalParameters
-
name
SimpleTypeName name
-
parameters
ConsList<TypeParameter> parameters
-
receiverParameter
Maybe<ReceiverParameter> receiverParameter
-
-
-
Class hydra.ext.java.syntax.ConstructorModifier extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ConstructorModifier.Annotation extends ConstructorModifier implements Serializable
-
Serialized Fields
-
value
Annotation value
-
-
-
Class hydra.ext.java.syntax.ConstructorModifier.Private extends ConstructorModifier implements Serializable
-
Class hydra.ext.java.syntax.ConstructorModifier.Protected extends ConstructorModifier implements Serializable
-
Class hydra.ext.java.syntax.ConstructorModifier.Public extends ConstructorModifier implements Serializable
-
Class hydra.ext.java.syntax.ContinueStatement extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Maybe<Identifier> value
-
-
-
Class hydra.ext.java.syntax.DefaultValue extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ElementValue value
-
-
-
Class hydra.ext.java.syntax.DimExpr extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
expression
Maybe<Expression> expression
-
-
-
Class hydra.ext.java.syntax.Dims extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<ConsList<Annotation>> value
-
-
-
Class hydra.ext.java.syntax.DoStatement extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
Statement body
-
conde
Maybe<Expression> conde
-
-
-
Class hydra.ext.java.syntax.ElementValue extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ElementValue.Annotation extends ElementValue implements Serializable
-
Serialized Fields
-
value
Annotation value
-
-
-
Class hydra.ext.java.syntax.ElementValue.ConditionalExpression extends ElementValue implements Serializable
-
Serialized Fields
-
value
ConditionalExpression value
-
-
-
Class hydra.ext.java.syntax.ElementValue.ElementValueArrayInitializer extends ElementValue implements Serializable
-
Serialized Fields
-
value
ElementValueArrayInitializer value
-
-
-
Class hydra.ext.java.syntax.ElementValueArrayInitializer extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<ElementValue> value
-
-
-
Class hydra.ext.java.syntax.ElementValuePair extends java.lang.Object implements Serializable
-
Serialized Fields
-
key
Identifier key
-
value
ElementValue value
-
-
-
Class hydra.ext.java.syntax.EnhancedForCond extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
Expression expression
-
id
VariableDeclaratorId id
-
modifiers
ConsList<VariableModifier> modifiers
-
type
LocalVariableType type
-
-
-
Class hydra.ext.java.syntax.EnhancedForStatement extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
Statement body
-
cond
EnhancedForCond cond
-
-
-
Class hydra.ext.java.syntax.EnhancedForStatementNoShortIf extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
StatementNoShortIf body
-
cond
EnhancedForCond cond
-
-
-
Class hydra.ext.java.syntax.EnumBody extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<EnumBody_Element> value
-
-
-
Class hydra.ext.java.syntax.EnumBody_Element extends java.lang.Object implements Serializable
-
Serialized Fields
-
bodyDeclarations
ConsList<ClassBodyDeclaration> bodyDeclarations
-
constants
ConsList<EnumConstant> constants
-
-
-
Class hydra.ext.java.syntax.EnumConstant extends java.lang.Object implements Serializable
-
Serialized Fields
-
arguments
ConsList<ConsList<Expression>> arguments
-
body
Maybe<ClassBody> body
-
identifier
Identifier identifier
-
modifiers
ConsList<EnumConstantModifier> modifiers
-
-
-
Class hydra.ext.java.syntax.EnumConstantModifier extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Annotation value
-
-
-
Class hydra.ext.java.syntax.EnumConstantName extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.java.syntax.EnumDeclaration extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
EnumBody body
-
identifier
TypeIdentifier identifier
-
implements_
ConsList<InterfaceType> implements_
-
modifiers
ConsList<ClassModifier> modifiers
-
-
-
Class hydra.ext.java.syntax.EqualityExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.EqualityExpression_Binary extends java.lang.Object implements Serializable
-
Serialized Fields
-
lhs
EqualityExpression lhs
-
rhs
RelationalExpression rhs
-
-
-
Class hydra.ext.java.syntax.EqualityExpression.Equal extends EqualityExpression implements Serializable
-
Serialized Fields
-
value
EqualityExpression_Binary value
-
-
-
Class hydra.ext.java.syntax.EqualityExpression.NotEqual extends EqualityExpression implements Serializable
-
Serialized Fields
-
value
EqualityExpression_Binary value
-
-
-
Class hydra.ext.java.syntax.EqualityExpression.Unary extends EqualityExpression implements Serializable
-
Serialized Fields
-
value
RelationalExpression value
-
-
-
Class hydra.ext.java.syntax.ExceptionType extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ExceptionType.Class_ extends ExceptionType implements Serializable
-
Serialized Fields
-
value
ClassType value
-
-
-
Class hydra.ext.java.syntax.ExceptionType.Variable extends ExceptionType implements Serializable
-
Serialized Fields
-
value
TypeVariable value
-
-
-
Class hydra.ext.java.syntax.ExclusiveOrExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<AndExpression> value
-
-
-
Class hydra.ext.java.syntax.ExplicitConstructorInvocation extends java.lang.Object implements Serializable
-
Serialized Fields
-
arguments
ConsList<Expression> arguments
-
typeArguments
ConsList<TypeArgument> typeArguments
-
variant
ExplicitConstructorInvocation_Variant variant
-
-
-
Class hydra.ext.java.syntax.ExplicitConstructorInvocation_Variant extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ExplicitConstructorInvocation_Variant.Primary extends ExplicitConstructorInvocation_Variant implements Serializable
-
Serialized Fields
-
value
Primary value
-
-
-
Class hydra.ext.java.syntax.ExplicitConstructorInvocation_Variant.Super extends ExplicitConstructorInvocation_Variant implements Serializable
-
Serialized Fields
-
value
Maybe<ExpressionName> value
-
-
-
Class hydra.ext.java.syntax.ExplicitConstructorInvocation_Variant.This extends ExplicitConstructorInvocation_Variant implements Serializable
-
Class hydra.ext.java.syntax.Expression extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.Expression.Assignment extends Expression implements Serializable
-
Serialized Fields
-
value
AssignmentExpression value
-
-
-
Class hydra.ext.java.syntax.Expression.Lambda extends Expression implements Serializable
-
Serialized Fields
-
value
LambdaExpression value
-
-
-
Class hydra.ext.java.syntax.ExpressionName extends java.lang.Object implements Serializable
-
Serialized Fields
-
identifier
Identifier identifier
-
qualifier
Maybe<AmbiguousName> qualifier
-
-
-
Class hydra.ext.java.syntax.ExpressionStatement extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
StatementExpression value
-
-
-
Class hydra.ext.java.syntax.FieldAccess extends java.lang.Object implements Serializable
-
Serialized Fields
-
identifier
Identifier identifier
-
qualifier
FieldAccess_Qualifier qualifier
-
-
-
Class hydra.ext.java.syntax.FieldAccess_Qualifier extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.FieldAccess_Qualifier.Primary extends FieldAccess_Qualifier implements Serializable
-
Serialized Fields
-
value
Primary value
-
-
-
Class hydra.ext.java.syntax.FieldAccess_Qualifier.Super extends FieldAccess_Qualifier implements Serializable
-
Class hydra.ext.java.syntax.FieldAccess_Qualifier.Typed extends FieldAccess_Qualifier implements Serializable
-
Serialized Fields
-
value
TypeName value
-
-
-
Class hydra.ext.java.syntax.FieldDeclaration extends java.lang.Object implements Serializable
-
Serialized Fields
-
modifiers
ConsList<FieldModifier> modifiers
-
unannType
UnannType unannType
-
variableDeclarators
ConsList<VariableDeclarator> variableDeclarators
-
-
-
Class hydra.ext.java.syntax.FieldModifier extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.FieldModifier.Annotation extends FieldModifier implements Serializable
-
Serialized Fields
-
value
Annotation value
-
-
-
Class hydra.ext.java.syntax.FieldModifier.Final extends FieldModifier implements Serializable
-
Class hydra.ext.java.syntax.FieldModifier.Private extends FieldModifier implements Serializable
-
Class hydra.ext.java.syntax.FieldModifier.Protected extends FieldModifier implements Serializable
-
Class hydra.ext.java.syntax.FieldModifier.Public extends FieldModifier implements Serializable
-
Class hydra.ext.java.syntax.FieldModifier.Static extends FieldModifier implements Serializable
-
Class hydra.ext.java.syntax.FieldModifier.Transient extends FieldModifier implements Serializable
-
Class hydra.ext.java.syntax.FieldModifier.Volatile extends FieldModifier implements Serializable
-
Class hydra.ext.java.syntax.Finally extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Block value
-
-
-
Class hydra.ext.java.syntax.FloatingPointLiteral extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.math.BigDecimal value
-
-
-
Class hydra.ext.java.syntax.FloatingPointType extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.FloatingPointType.Double_ extends FloatingPointType implements Serializable
-
Class hydra.ext.java.syntax.FloatingPointType.Float_ extends FloatingPointType implements Serializable
-
Class hydra.ext.java.syntax.ForCond extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ForInit extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ForInit.LocalVariable extends ForInit implements Serializable
-
Serialized Fields
-
value
LocalVariableDeclaration value
-
-
-
Class hydra.ext.java.syntax.ForInit.Statements extends ForInit implements Serializable
-
Serialized Fields
-
value
ConsList<StatementExpression> value
-
-
-
Class hydra.ext.java.syntax.FormalParameter extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.FormalParameter_Simple extends java.lang.Object implements Serializable
-
Serialized Fields
-
id
VariableDeclaratorId id
-
modifiers
ConsList<VariableModifier> modifiers
-
type
UnannType type
-
-
-
Class hydra.ext.java.syntax.FormalParameter.Simple extends FormalParameter implements Serializable
-
Serialized Fields
-
value
FormalParameter_Simple value
-
-
-
Class hydra.ext.java.syntax.FormalParameter.VariableArity extends FormalParameter implements Serializable
-
Serialized Fields
-
value
VariableArityParameter value
-
-
-
Class hydra.ext.java.syntax.ForStatement extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ForStatement.Basic extends ForStatement implements Serializable
-
Serialized Fields
-
value
BasicForStatement value
-
-
-
Class hydra.ext.java.syntax.ForStatement.Enhanced extends ForStatement implements Serializable
-
Serialized Fields
-
value
EnhancedForStatement value
-
-
-
Class hydra.ext.java.syntax.ForStatementNoShortIf extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ForStatementNoShortIf.Basic extends ForStatementNoShortIf implements Serializable
-
Serialized Fields
-
value
BasicForStatementNoShortIf value
-
-
-
Class hydra.ext.java.syntax.ForStatementNoShortIf.Enhanced extends ForStatementNoShortIf implements Serializable
-
Serialized Fields
-
value
EnhancedForStatementNoShortIf value
-
-
-
Class hydra.ext.java.syntax.ForUpdate extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<StatementExpression> value
-
-
-
Class hydra.ext.java.syntax.Identifier extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.java.syntax.IfThenElseStatement extends java.lang.Object implements Serializable
-
Serialized Fields
-
cond
Maybe<Expression> cond
-
else_
Statement else_
-
then
StatementNoShortIf then
-
-
-
Class hydra.ext.java.syntax.IfThenElseStatementNoShortIf extends java.lang.Object implements Serializable
-
Serialized Fields
-
cond
Maybe<Expression> cond
-
else_
StatementNoShortIf else_
-
then
StatementNoShortIf then
-
-
-
Class hydra.ext.java.syntax.IfThenStatement extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
Expression expression
-
statement
Statement statement
-
-
-
Class hydra.ext.java.syntax.ImportDeclaration extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ImportDeclaration.SingleStaticImport extends ImportDeclaration implements Serializable
-
Serialized Fields
-
value
SingleStaticImportDeclaration value
-
-
-
Class hydra.ext.java.syntax.ImportDeclaration.SingleType extends ImportDeclaration implements Serializable
-
Serialized Fields
-
value
SingleTypeImportDeclaration value
-
-
-
Class hydra.ext.java.syntax.ImportDeclaration.StaticImportOnDemand extends ImportDeclaration implements Serializable
-
Serialized Fields
-
value
StaticImportOnDemandDeclaration value
-
-
-
Class hydra.ext.java.syntax.ImportDeclaration.TypeImportOnDemand extends ImportDeclaration implements Serializable
-
Serialized Fields
-
value
TypeImportOnDemandDeclaration value
-
-
-
Class hydra.ext.java.syntax.InclusiveOrExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<ExclusiveOrExpression> value
-
-
-
Class hydra.ext.java.syntax.InstanceInitializer extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Block value
-
-
-
Class hydra.ext.java.syntax.IntegerLiteral extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.math.BigInteger value
-
-
-
Class hydra.ext.java.syntax.IntegralType extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.IntegralType.Byte_ extends IntegralType implements Serializable
-
Class hydra.ext.java.syntax.IntegralType.Char extends IntegralType implements Serializable
-
Class hydra.ext.java.syntax.IntegralType.Int extends IntegralType implements Serializable
-
Class hydra.ext.java.syntax.IntegralType.Long_ extends IntegralType implements Serializable
-
Class hydra.ext.java.syntax.IntegralType.Short_ extends IntegralType implements Serializable
-
Class hydra.ext.java.syntax.InterfaceBody extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<InterfaceMemberDeclaration> value
-
-
-
Class hydra.ext.java.syntax.InterfaceDeclaration extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.InterfaceDeclaration.AnnotationType extends InterfaceDeclaration implements Serializable
-
Serialized Fields
-
value
AnnotationTypeDeclaration value
-
-
-
Class hydra.ext.java.syntax.InterfaceDeclaration.NormalInterface extends InterfaceDeclaration implements Serializable
-
Serialized Fields
-
value
NormalInterfaceDeclaration value
-
-
-
Class hydra.ext.java.syntax.InterfaceMemberDeclaration extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.InterfaceMemberDeclaration.Class_ extends InterfaceMemberDeclaration implements Serializable
-
Serialized Fields
-
value
ClassDeclaration value
-
-
-
Class hydra.ext.java.syntax.InterfaceMemberDeclaration.Constant extends InterfaceMemberDeclaration implements Serializable
-
Serialized Fields
-
value
ConstantDeclaration value
-
-
-
Class hydra.ext.java.syntax.InterfaceMemberDeclaration.Interface extends InterfaceMemberDeclaration implements Serializable
-
Serialized Fields
-
value
InterfaceDeclaration value
-
-
-
Class hydra.ext.java.syntax.InterfaceMemberDeclaration.InterfaceMethod extends InterfaceMemberDeclaration implements Serializable
-
Serialized Fields
-
value
InterfaceMethodDeclaration value
-
-
-
Class hydra.ext.java.syntax.InterfaceMethodDeclaration extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
MethodBody body
-
header
MethodHeader header
-
modifiers
ConsList<InterfaceMethodModifier> modifiers
-
-
-
Class hydra.ext.java.syntax.InterfaceMethodModifier extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.InterfaceMethodModifier.Abstract extends InterfaceMethodModifier implements Serializable
-
Class hydra.ext.java.syntax.InterfaceMethodModifier.Annotation extends InterfaceMethodModifier implements Serializable
-
Serialized Fields
-
value
Annotation value
-
-
-
Class hydra.ext.java.syntax.InterfaceMethodModifier.Default extends InterfaceMethodModifier implements Serializable
-
Class hydra.ext.java.syntax.InterfaceMethodModifier.Private extends InterfaceMethodModifier implements Serializable
-
Class hydra.ext.java.syntax.InterfaceMethodModifier.Public extends InterfaceMethodModifier implements Serializable
-
Class hydra.ext.java.syntax.InterfaceMethodModifier.Static extends InterfaceMethodModifier implements Serializable
-
Class hydra.ext.java.syntax.InterfaceMethodModifier.Strictfp extends InterfaceMethodModifier implements Serializable
-
Class hydra.ext.java.syntax.InterfaceModifier extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.InterfaceModifier.Abstract extends InterfaceModifier implements Serializable
-
Class hydra.ext.java.syntax.InterfaceModifier.Annotation extends InterfaceModifier implements Serializable
-
Serialized Fields
-
value
Annotation value
-
-
-
Class hydra.ext.java.syntax.InterfaceModifier.Private extends InterfaceModifier implements Serializable
-
Class hydra.ext.java.syntax.InterfaceModifier.Protected extends InterfaceModifier implements Serializable
-
Class hydra.ext.java.syntax.InterfaceModifier.Public extends InterfaceModifier implements Serializable
-
Class hydra.ext.java.syntax.InterfaceModifier.Static extends InterfaceModifier implements Serializable
-
Class hydra.ext.java.syntax.InterfaceModifier.Strictfb extends InterfaceModifier implements Serializable
-
Class hydra.ext.java.syntax.InterfaceType extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ClassType value
-
-
-
Class hydra.ext.java.syntax.LabeledStatement extends java.lang.Object implements Serializable
-
Serialized Fields
-
identifier
Identifier identifier
-
statement
Statement statement
-
-
-
Class hydra.ext.java.syntax.LabeledStatementNoShortIf extends java.lang.Object implements Serializable
-
Serialized Fields
-
identifier
Identifier identifier
-
statement
StatementNoShortIf statement
-
-
-
Class hydra.ext.java.syntax.LambdaBody extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.LambdaBody.Block extends LambdaBody implements Serializable
-
Serialized Fields
-
value
Block value
-
-
-
Class hydra.ext.java.syntax.LambdaBody.Expression extends LambdaBody implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.java.syntax.LambdaExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
LambdaBody body
-
parameters
LambdaParameters parameters
-
-
-
Class hydra.ext.java.syntax.LambdaParameter extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.LambdaParameter_Normal extends java.lang.Object implements Serializable
-
Serialized Fields
-
id
VariableDeclaratorId id
-
modifiers
ConsList<VariableModifier> modifiers
-
type
LambdaParameterType type
-
-
-
Class hydra.ext.java.syntax.LambdaParameter.Normal extends LambdaParameter implements Serializable
-
Serialized Fields
-
value
LambdaParameter_Normal value
-
-
-
Class hydra.ext.java.syntax.LambdaParameter.VariableArity extends LambdaParameter implements Serializable
-
Serialized Fields
-
value
VariableArityParameter value
-
-
-
Class hydra.ext.java.syntax.LambdaParameters extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.LambdaParameters.Single extends LambdaParameters implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.java.syntax.LambdaParameters.Tuple extends LambdaParameters implements Serializable
-
Serialized Fields
-
value
ConsList<LambdaParameters> value
-
-
-
Class hydra.ext.java.syntax.LambdaParameterType extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.LambdaParameterType.Type extends LambdaParameterType implements Serializable
-
Serialized Fields
-
value
UnannType value
-
-
-
Class hydra.ext.java.syntax.LambdaParameterType.Var extends LambdaParameterType implements Serializable
-
Class hydra.ext.java.syntax.LeftHandSide extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.LeftHandSide.ArrayAccess extends LeftHandSide implements Serializable
-
Serialized Fields
-
value
ArrayAccess value
-
-
-
Class hydra.ext.java.syntax.LeftHandSide.ExpressionName extends LeftHandSide implements Serializable
-
Serialized Fields
-
value
ExpressionName value
-
-
-
Class hydra.ext.java.syntax.LeftHandSide.FieldAccess extends LeftHandSide implements Serializable
-
Serialized Fields
-
value
FieldAccess value
-
-
-
Class hydra.ext.java.syntax.Literal extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.Literal.Boolean_ extends Literal implements Serializable
-
Serialized Fields
-
value
java.lang.Boolean value
-
-
-
Class hydra.ext.java.syntax.Literal.Character_ extends Literal implements Serializable
-
Serialized Fields
-
value
java.lang.Character value
-
-
-
Class hydra.ext.java.syntax.Literal.FloatingPoint extends Literal implements Serializable
-
Serialized Fields
-
value
FloatingPointLiteral value
-
-
-
Class hydra.ext.java.syntax.Literal.Integer_ extends Literal implements Serializable
-
Serialized Fields
-
value
IntegerLiteral value
-
-
-
Class hydra.ext.java.syntax.Literal.Null extends Literal implements Serializable
-
Class hydra.ext.java.syntax.Literal.String_ extends Literal implements Serializable
-
Serialized Fields
-
value
StringLiteral value
-
-
-
Class hydra.ext.java.syntax.LocalVariableDeclaration extends java.lang.Object implements Serializable
-
Serialized Fields
-
declarators
ConsList<VariableDeclarator> declarators
-
modifiers
ConsList<VariableModifier> modifiers
-
type
LocalVariableType type
-
-
-
Class hydra.ext.java.syntax.LocalVariableDeclarationStatement extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
LocalVariableDeclaration value
-
-
-
Class hydra.ext.java.syntax.LocalVariableType extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.LocalVariableType.Type extends LocalVariableType implements Serializable
-
Serialized Fields
-
value
UnannType value
-
-
-
Class hydra.ext.java.syntax.LocalVariableType.Var extends LocalVariableType implements Serializable
-
Class hydra.ext.java.syntax.MarkerAnnotation extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
TypeName value
-
-
-
Class hydra.ext.java.syntax.MethodBody extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.MethodBody.Block extends MethodBody implements Serializable
-
Serialized Fields
-
value
Block value
-
-
-
Class hydra.ext.java.syntax.MethodBody.None extends MethodBody implements Serializable
-
Class hydra.ext.java.syntax.MethodDeclaration extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
Note: simple methods cannot have annotations -
body
MethodBody body
-
header
MethodHeader header
-
modifiers
ConsList<MethodModifier> modifiers
-
-
-
Class hydra.ext.java.syntax.MethodDeclarator extends java.lang.Object implements Serializable
-
Serialized Fields
-
formalParameters
ConsList<FormalParameter> formalParameters
-
identifier
Identifier identifier
-
receiverParameter
Maybe<ReceiverParameter> receiverParameter
-
-
-
Class hydra.ext.java.syntax.MethodHeader extends java.lang.Object implements Serializable
-
Serialized Fields
-
declarator
MethodDeclarator declarator
-
parameters
ConsList<TypeParameter> parameters
-
result
Result result
-
throws_
Maybe<Throws> throws_
-
-
-
Class hydra.ext.java.syntax.MethodInvocation extends java.lang.Object implements Serializable
-
Serialized Fields
-
arguments
ConsList<Expression> arguments
-
header
MethodInvocation_Header header
-
-
-
Class hydra.ext.java.syntax.MethodInvocation_Complex extends java.lang.Object implements Serializable
-
Serialized Fields
-
identifier
Identifier identifier
-
typeArguments
ConsList<TypeArgument> typeArguments
-
variant
MethodInvocation_Variant variant
-
-
-
Class hydra.ext.java.syntax.MethodInvocation_Header extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.MethodInvocation_Header.Complex extends MethodInvocation_Header implements Serializable
-
Serialized Fields
-
value
MethodInvocation_Complex value
-
-
-
Class hydra.ext.java.syntax.MethodInvocation_Header.Simple extends MethodInvocation_Header implements Serializable
-
Serialized Fields
-
value
MethodName value
-
-
-
Class hydra.ext.java.syntax.MethodInvocation_Variant extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.MethodInvocation_Variant.Expression extends MethodInvocation_Variant implements Serializable
-
Serialized Fields
-
value
ExpressionName value
-
-
-
Class hydra.ext.java.syntax.MethodInvocation_Variant.Primary extends MethodInvocation_Variant implements Serializable
-
Serialized Fields
-
value
Primary value
-
-
-
Class hydra.ext.java.syntax.MethodInvocation_Variant.Super extends MethodInvocation_Variant implements Serializable
-
Class hydra.ext.java.syntax.MethodInvocation_Variant.Type extends MethodInvocation_Variant implements Serializable
-
Serialized Fields
-
value
TypeName value
-
-
-
Class hydra.ext.java.syntax.MethodInvocation_Variant.TypeSuper extends MethodInvocation_Variant implements Serializable
-
Serialized Fields
-
value
TypeName value
-
-
-
Class hydra.ext.java.syntax.MethodModifier extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.MethodModifier.Abstract extends MethodModifier implements Serializable
-
Class hydra.ext.java.syntax.MethodModifier.Annotation extends MethodModifier implements Serializable
-
Serialized Fields
-
value
Annotation value
-
-
-
Class hydra.ext.java.syntax.MethodModifier.Final extends MethodModifier implements Serializable
-
Class hydra.ext.java.syntax.MethodModifier.Native extends MethodModifier implements Serializable
-
Class hydra.ext.java.syntax.MethodModifier.Private extends MethodModifier implements Serializable
-
Class hydra.ext.java.syntax.MethodModifier.Protected extends MethodModifier implements Serializable
-
Class hydra.ext.java.syntax.MethodModifier.Public extends MethodModifier implements Serializable
-
Class hydra.ext.java.syntax.MethodModifier.Static extends MethodModifier implements Serializable
-
Class hydra.ext.java.syntax.MethodModifier.Strictfb extends MethodModifier implements Serializable
-
Class hydra.ext.java.syntax.MethodModifier.Synchronized extends MethodModifier implements Serializable
-
Class hydra.ext.java.syntax.MethodName extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.java.syntax.MethodReference extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.MethodReference_Array extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ArrayType value
-
-
-
Class hydra.ext.java.syntax.MethodReference_Expression extends java.lang.Object implements Serializable
-
Serialized Fields
-
identifier
Identifier identifier
-
name
ExpressionName name
-
typeArguments
ConsList<TypeArgument> typeArguments
-
-
-
Class hydra.ext.java.syntax.MethodReference_New extends java.lang.Object implements Serializable
-
Serialized Fields
-
classType
ClassType classType
-
typeArguments
ConsList<TypeArgument> typeArguments
-
-
-
Class hydra.ext.java.syntax.MethodReference_Primary extends java.lang.Object implements Serializable
-
Serialized Fields
-
identifier
Identifier identifier
-
primary
Primary primary
-
typeArguments
ConsList<TypeArgument> typeArguments
-
-
-
Class hydra.ext.java.syntax.MethodReference_ReferenceType extends java.lang.Object implements Serializable
-
Serialized Fields
-
identifier
Identifier identifier
-
referenceType
ReferenceType referenceType
-
typeArguments
ConsList<TypeArgument> typeArguments
-
-
-
Class hydra.ext.java.syntax.MethodReference_Super extends java.lang.Object implements Serializable
-
Serialized Fields
-
identifier
Identifier identifier
-
super_
java.lang.Boolean super_
-
typeArguments
ConsList<TypeArgument> typeArguments
-
-
-
Class hydra.ext.java.syntax.MethodReference.Array extends MethodReference implements Serializable
-
Serialized Fields
-
value
MethodReference_Array value
-
-
-
Class hydra.ext.java.syntax.MethodReference.Expression extends MethodReference implements Serializable
-
Serialized Fields
-
value
MethodReference_Expression value
-
-
-
Class hydra.ext.java.syntax.MethodReference.New extends MethodReference implements Serializable
-
Serialized Fields
-
value
MethodReference_New value
-
-
-
Class hydra.ext.java.syntax.MethodReference.Primary extends MethodReference implements Serializable
-
Serialized Fields
-
value
MethodReference_Primary value
-
-
-
Class hydra.ext.java.syntax.MethodReference.ReferenceType extends MethodReference implements Serializable
-
Serialized Fields
-
value
MethodReference_ReferenceType value
-
-
-
Class hydra.ext.java.syntax.MethodReference.Super extends MethodReference implements Serializable
-
Serialized Fields
-
value
MethodReference_Super value
-
-
-
Class hydra.ext.java.syntax.ModularCompilationUnit extends java.lang.Object implements Serializable
-
Serialized Fields
-
imports
ConsList<ImportDeclaration> imports
-
module
ModuleDeclaration module
-
-
-
Class hydra.ext.java.syntax.ModuleDeclaration extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
directives
ConsList<ConsList<ModuleDirective>> directives
-
identifiers
ConsList<Identifier> identifiers
-
open
java.lang.Boolean open
-
-
-
Class hydra.ext.java.syntax.ModuleDirective extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ModuleDirective_ExportsOrOpens extends java.lang.Object implements Serializable
-
Serialized Fields
-
modules
ConsList<ModuleName> modules
At least one module -
package_
PackageName package_
-
-
-
Class hydra.ext.java.syntax.ModuleDirective_Provides extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ModuleDirective_Requires extends java.lang.Object implements Serializable
-
Serialized Fields
-
modifiers
ConsList<RequiresModifier> modifiers
-
module
ModuleName module
-
-
-
Class hydra.ext.java.syntax.ModuleDirective.Exports extends ModuleDirective implements Serializable
-
Serialized Fields
-
value
ModuleDirective_ExportsOrOpens value
-
-
-
Class hydra.ext.java.syntax.ModuleDirective.Opens extends ModuleDirective implements Serializable
-
Serialized Fields
-
value
ModuleDirective_ExportsOrOpens value
-
-
-
Class hydra.ext.java.syntax.ModuleDirective.Provides extends ModuleDirective implements Serializable
-
Serialized Fields
-
value
ModuleDirective_Provides value
-
-
-
Class hydra.ext.java.syntax.ModuleDirective.Requires extends ModuleDirective implements Serializable
-
Serialized Fields
-
value
ModuleDirective_Requires value
-
-
-
Class hydra.ext.java.syntax.ModuleDirective.Uses extends ModuleDirective implements Serializable
-
Serialized Fields
-
value
TypeName value
-
-
-
Class hydra.ext.java.syntax.ModuleName extends java.lang.Object implements Serializable
-
Serialized Fields
-
identifier
Identifier identifier
-
name
Maybe<ModuleName> name
-
-
-
Class hydra.ext.java.syntax.MultiplicativeExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.MultiplicativeExpression_Binary extends java.lang.Object implements Serializable
-
Serialized Fields
-
lhs
MultiplicativeExpression lhs
-
rhs
UnaryExpression rhs
-
-
-
Class hydra.ext.java.syntax.MultiplicativeExpression.Divide extends MultiplicativeExpression implements Serializable
-
Serialized Fields
-
value
MultiplicativeExpression_Binary value
-
-
-
Class hydra.ext.java.syntax.MultiplicativeExpression.Mod extends MultiplicativeExpression implements Serializable
-
Serialized Fields
-
value
MultiplicativeExpression_Binary value
-
-
-
Class hydra.ext.java.syntax.MultiplicativeExpression.Times extends MultiplicativeExpression implements Serializable
-
Serialized Fields
-
value
MultiplicativeExpression_Binary value
-
-
-
Class hydra.ext.java.syntax.MultiplicativeExpression.Unary extends MultiplicativeExpression implements Serializable
-
Serialized Fields
-
value
UnaryExpression value
-
-
-
Class hydra.ext.java.syntax.NormalAnnotation extends java.lang.Object implements Serializable
-
Serialized Fields
-
pairs
ConsList<ElementValuePair> pairs
-
typeName
TypeName typeName
-
-
-
Class hydra.ext.java.syntax.NormalClassDeclaration extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
ClassBody body
-
extends_
Maybe<ClassType> extends_
-
identifier
TypeIdentifier identifier
-
implements_
ConsList<InterfaceType> implements_
-
modifiers
ConsList<ClassModifier> modifiers
-
parameters
ConsList<TypeParameter> parameters
-
-
-
Class hydra.ext.java.syntax.NormalInterfaceDeclaration extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
InterfaceBody body
-
extends_
ConsList<InterfaceType> extends_
-
identifier
TypeIdentifier identifier
-
modifiers
ConsList<InterfaceModifier> modifiers
-
parameters
ConsList<TypeParameter> parameters
-
-
-
Class hydra.ext.java.syntax.NumericType extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.NumericType.FloatingPoint extends NumericType implements Serializable
-
Serialized Fields
-
value
FloatingPointType value
-
-
-
Class hydra.ext.java.syntax.NumericType.Integral extends NumericType implements Serializable
-
Serialized Fields
-
value
IntegralType value
-
-
-
Class hydra.ext.java.syntax.NumericTypeArray extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.NumericTypeArray.Array extends NumericTypeArray implements Serializable
-
Serialized Fields
-
value
NumericTypeArray value
-
-
-
Class hydra.ext.java.syntax.NumericTypeArray.Simple extends NumericTypeArray implements Serializable
-
Serialized Fields
-
value
NumericType value
-
-
-
Class hydra.ext.java.syntax.OrdinaryCompilationUnit extends java.lang.Object implements Serializable
-
Serialized Fields
-
imports
ConsList<ImportDeclaration> imports
-
package_
Maybe<PackageDeclaration> package_
-
types
ConsList<TypeDeclarationWithComments> types
-
-
-
Class hydra.ext.java.syntax.PackageDeclaration extends java.lang.Object implements Serializable
-
Serialized Fields
-
identifiers
ConsList<Identifier> identifiers
-
modifiers
ConsList<PackageModifier> modifiers
-
-
-
Class hydra.ext.java.syntax.PackageModifier extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Annotation value
-
-
-
Class hydra.ext.java.syntax.PackageName extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<Identifier> value
-
-
-
Class hydra.ext.java.syntax.PackageOrTypeName extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<Identifier> value
-
-
-
Class hydra.ext.java.syntax.PostDecrementExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
PostfixExpression value
-
-
-
Class hydra.ext.java.syntax.PostfixExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.PostfixExpression.Name extends PostfixExpression implements Serializable
-
Serialized Fields
-
value
ExpressionName value
-
-
-
Class hydra.ext.java.syntax.PostfixExpression.PostDecrement extends PostfixExpression implements Serializable
-
Serialized Fields
-
value
PostDecrementExpression value
-
-
-
Class hydra.ext.java.syntax.PostfixExpression.PostIncrement extends PostfixExpression implements Serializable
-
Serialized Fields
-
value
PostIncrementExpression value
-
-
-
Class hydra.ext.java.syntax.PostfixExpression.Primary extends PostfixExpression implements Serializable
-
Serialized Fields
-
value
Primary value
-
-
-
Class hydra.ext.java.syntax.PostIncrementExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
PostfixExpression value
-
-
-
Class hydra.ext.java.syntax.PreDecrementExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
UnaryExpression value
-
-
-
Class hydra.ext.java.syntax.PreIncrementExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
UnaryExpression value
-
-
-
Class hydra.ext.java.syntax.Primary extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.Primary.ArrayCreation extends Primary implements Serializable
-
Serialized Fields
-
value
ArrayCreationExpression value
-
-
-
Class hydra.ext.java.syntax.Primary.NoNewArray extends Primary implements Serializable
-
Serialized Fields
-
value
PrimaryNoNewArrayExpression value
-
-
-
Class hydra.ext.java.syntax.PrimaryNoNewArrayExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.PrimaryNoNewArrayExpression.ArrayAccess extends PrimaryNoNewArrayExpression implements Serializable
-
Serialized Fields
-
value
ArrayAccess value
-
-
-
Class hydra.ext.java.syntax.PrimaryNoNewArrayExpression.ClassInstance extends PrimaryNoNewArrayExpression implements Serializable
-
Serialized Fields
-
value
ClassInstanceCreationExpression value
-
-
-
Class hydra.ext.java.syntax.PrimaryNoNewArrayExpression.ClassLiteral extends PrimaryNoNewArrayExpression implements Serializable
-
Serialized Fields
-
value
ClassLiteral value
-
-
-
Class hydra.ext.java.syntax.PrimaryNoNewArrayExpression.DotThis extends PrimaryNoNewArrayExpression implements Serializable
-
Serialized Fields
-
value
TypeName value
-
-
-
Class hydra.ext.java.syntax.PrimaryNoNewArrayExpression.FieldAccess extends PrimaryNoNewArrayExpression implements Serializable
-
Serialized Fields
-
value
FieldAccess value
-
-
-
Class hydra.ext.java.syntax.PrimaryNoNewArrayExpression.Literal extends PrimaryNoNewArrayExpression implements Serializable
-
Serialized Fields
-
value
Literal value
-
-
-
Class hydra.ext.java.syntax.PrimaryNoNewArrayExpression.MethodInvocation extends PrimaryNoNewArrayExpression implements Serializable
-
Serialized Fields
-
value
MethodInvocation value
-
-
-
Class hydra.ext.java.syntax.PrimaryNoNewArrayExpression.MethodReference extends PrimaryNoNewArrayExpression implements Serializable
-
Serialized Fields
-
value
MethodReference value
-
-
-
Class hydra.ext.java.syntax.PrimaryNoNewArrayExpression.Parens extends PrimaryNoNewArrayExpression implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.java.syntax.PrimaryNoNewArrayExpression.This extends PrimaryNoNewArrayExpression implements Serializable
-
Class hydra.ext.java.syntax.PrimitiveType extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.PrimitiveType.Boolean_ extends PrimitiveType implements Serializable
-
Class hydra.ext.java.syntax.PrimitiveType.Numeric extends PrimitiveType implements Serializable
-
Serialized Fields
-
value
NumericType value
-
-
-
Class hydra.ext.java.syntax.PrimitiveTypeWithAnnotations extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
type
PrimitiveType type
-
-
-
Class hydra.ext.java.syntax.ReceiverParameter extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
identifier
Maybe<Identifier> identifier
-
unannType
UnannType unannType
-
-
-
Class hydra.ext.java.syntax.ReferenceType extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ReferenceType.Array extends ReferenceType implements Serializable
-
Serialized Fields
-
value
ArrayType value
-
-
-
Class hydra.ext.java.syntax.ReferenceType.ClassOrInterface extends ReferenceType implements Serializable
-
Serialized Fields
-
value
ClassOrInterfaceType value
-
-
-
Class hydra.ext.java.syntax.ReferenceType.Variable extends ReferenceType implements Serializable
-
Serialized Fields
-
value
TypeVariable value
-
-
-
Class hydra.ext.java.syntax.RelationalExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.RelationalExpression_GreaterThan extends java.lang.Object implements Serializable
-
Serialized Fields
-
lhs
RelationalExpression lhs
-
rhs
ShiftExpression rhs
-
-
-
Class hydra.ext.java.syntax.RelationalExpression_GreaterThanEqual extends java.lang.Object implements Serializable
-
Serialized Fields
-
lhs
RelationalExpression lhs
-
rhs
ShiftExpression rhs
-
-
-
Class hydra.ext.java.syntax.RelationalExpression_InstanceOf extends java.lang.Object implements Serializable
-
Serialized Fields
-
lhs
RelationalExpression lhs
-
rhs
ReferenceType rhs
-
-
-
Class hydra.ext.java.syntax.RelationalExpression_LessThan extends java.lang.Object implements Serializable
-
Serialized Fields
-
lhs
RelationalExpression lhs
-
rhs
ShiftExpression rhs
-
-
-
Class hydra.ext.java.syntax.RelationalExpression_LessThanEqual extends java.lang.Object implements Serializable
-
Serialized Fields
-
lhs
RelationalExpression lhs
-
rhs
ShiftExpression rhs
-
-
-
Class hydra.ext.java.syntax.RelationalExpression.GreaterThan extends RelationalExpression implements Serializable
-
Serialized Fields
-
value
RelationalExpression_GreaterThan value
-
-
-
Class hydra.ext.java.syntax.RelationalExpression.GreaterThanEqual extends RelationalExpression implements Serializable
-
Serialized Fields
-
value
RelationalExpression_GreaterThanEqual value
-
-
-
Class hydra.ext.java.syntax.RelationalExpression.Instanceof extends RelationalExpression implements Serializable
-
Serialized Fields
-
value
RelationalExpression_InstanceOf value
-
-
-
Class hydra.ext.java.syntax.RelationalExpression.LessThan extends RelationalExpression implements Serializable
-
Serialized Fields
-
value
RelationalExpression_LessThan value
-
-
-
Class hydra.ext.java.syntax.RelationalExpression.LessThanEqual extends RelationalExpression implements Serializable
-
Serialized Fields
-
value
RelationalExpression_LessThanEqual value
-
-
-
Class hydra.ext.java.syntax.RelationalExpression.Simple extends RelationalExpression implements Serializable
-
Serialized Fields
-
value
ShiftExpression value
-
-
-
Class hydra.ext.java.syntax.RequiresModifier extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.RequiresModifier.Static extends RequiresModifier implements Serializable
-
Class hydra.ext.java.syntax.RequiresModifier.Transitive extends RequiresModifier implements Serializable
-
Class hydra.ext.java.syntax.Resource extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.Resource_Local extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
Expression expression
-
identifier
Identifier identifier
-
modifiers
ConsList<VariableModifier> modifiers
-
type
LocalVariableType type
-
-
-
Class hydra.ext.java.syntax.Resource.Local extends Resource implements Serializable
-
Serialized Fields
-
value
Resource_Local value
-
-
-
Class hydra.ext.java.syntax.Resource.Variable extends Resource implements Serializable
-
Serialized Fields
-
value
VariableAccess value
-
-
-
Class hydra.ext.java.syntax.ResourceSpecification extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.Result extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.Result.Type extends Result implements Serializable
-
Serialized Fields
-
value
UnannType value
-
-
-
Class hydra.ext.java.syntax.Result.Void_ extends Result implements Serializable
-
Class hydra.ext.java.syntax.ReturnStatement extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Maybe<Expression> value
-
-
-
Class hydra.ext.java.syntax.ShiftExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.ShiftExpression_Binary extends java.lang.Object implements Serializable
-
Serialized Fields
-
lhs
ShiftExpression lhs
-
rhs
AdditiveExpression rhs
-
-
-
Class hydra.ext.java.syntax.ShiftExpression.ShiftLeft extends ShiftExpression implements Serializable
-
Serialized Fields
-
value
ShiftExpression_Binary value
-
-
-
Class hydra.ext.java.syntax.ShiftExpression.ShiftRight extends ShiftExpression implements Serializable
-
Serialized Fields
-
value
ShiftExpression_Binary value
-
-
-
Class hydra.ext.java.syntax.ShiftExpression.ShiftRightZeroFill extends ShiftExpression implements Serializable
-
Serialized Fields
-
value
ShiftExpression_Binary value
-
-
-
Class hydra.ext.java.syntax.ShiftExpression.Unary extends ShiftExpression implements Serializable
-
Serialized Fields
-
value
AdditiveExpression value
-
-
-
Class hydra.ext.java.syntax.SimpleTypeName extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
TypeIdentifier value
-
-
-
Class hydra.ext.java.syntax.SingleElementAnnotation extends java.lang.Object implements Serializable
-
Serialized Fields
-
name
TypeName name
-
value
Maybe<ElementValue> value
-
-
-
Class hydra.ext.java.syntax.SingleStaticImportDeclaration extends java.lang.Object implements Serializable
-
Serialized Fields
-
identifier
Identifier identifier
-
typeName
TypeName typeName
-
-
-
Class hydra.ext.java.syntax.SingleTypeImportDeclaration extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
TypeName value
-
-
-
Class hydra.ext.java.syntax.Statement extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.Statement.For extends Statement implements Serializable
-
Serialized Fields
-
value
ForStatement value
-
-
-
Class hydra.ext.java.syntax.Statement.IfThen extends Statement implements Serializable
-
Serialized Fields
-
value
IfThenStatement value
-
-
-
Class hydra.ext.java.syntax.Statement.IfThenElse extends Statement implements Serializable
-
Serialized Fields
-
value
IfThenElseStatement value
-
-
-
Class hydra.ext.java.syntax.Statement.Labeled extends Statement implements Serializable
-
Serialized Fields
-
value
LabeledStatement value
-
-
-
Class hydra.ext.java.syntax.Statement.While extends Statement implements Serializable
-
Serialized Fields
-
value
WhileStatement value
-
-
-
Class hydra.ext.java.syntax.Statement.WithoutTrailing extends Statement implements Serializable
-
Serialized Fields
-
value
StatementWithoutTrailingSubstatement value
-
-
-
Class hydra.ext.java.syntax.StatementExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.StatementExpression.Assignment extends StatementExpression implements Serializable
-
Serialized Fields
-
value
Assignment value
-
-
-
Class hydra.ext.java.syntax.StatementExpression.ClassInstanceCreation extends StatementExpression implements Serializable
-
Serialized Fields
-
value
ClassInstanceCreationExpression value
-
-
-
Class hydra.ext.java.syntax.StatementExpression.MethodInvocation extends StatementExpression implements Serializable
-
Serialized Fields
-
value
MethodInvocation value
-
-
-
Class hydra.ext.java.syntax.StatementExpression.PostDecrement extends StatementExpression implements Serializable
-
Serialized Fields
-
value
PostDecrementExpression value
-
-
-
Class hydra.ext.java.syntax.StatementExpression.PostIncrement extends StatementExpression implements Serializable
-
Serialized Fields
-
value
PostIncrementExpression value
-
-
-
Class hydra.ext.java.syntax.StatementExpression.PreDecrement extends StatementExpression implements Serializable
-
Serialized Fields
-
value
PreDecrementExpression value
-
-
-
Class hydra.ext.java.syntax.StatementExpression.PreIncrement extends StatementExpression implements Serializable
-
Serialized Fields
-
value
PreIncrementExpression value
-
-
-
Class hydra.ext.java.syntax.StatementNoShortIf extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.StatementNoShortIf.For extends StatementNoShortIf implements Serializable
-
Serialized Fields
-
value
ForStatementNoShortIf value
-
-
-
Class hydra.ext.java.syntax.StatementNoShortIf.IfThenElse extends StatementNoShortIf implements Serializable
-
Serialized Fields
-
value
IfThenElseStatementNoShortIf value
-
-
-
Class hydra.ext.java.syntax.StatementNoShortIf.Labeled extends StatementNoShortIf implements Serializable
-
Serialized Fields
-
value
LabeledStatementNoShortIf value
-
-
-
Class hydra.ext.java.syntax.StatementNoShortIf.While extends StatementNoShortIf implements Serializable
-
Serialized Fields
-
value
WhileStatementNoShortIf value
-
-
-
Class hydra.ext.java.syntax.StatementNoShortIf.WithoutTrailing extends StatementNoShortIf implements Serializable
-
Serialized Fields
-
value
StatementWithoutTrailingSubstatement value
-
-
-
Class hydra.ext.java.syntax.StatementWithoutTrailingSubstatement extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.StatementWithoutTrailingSubstatement.Assert extends StatementWithoutTrailingSubstatement implements Serializable
-
Serialized Fields
-
value
AssertStatement value
-
-
-
Class hydra.ext.java.syntax.StatementWithoutTrailingSubstatement.Block extends StatementWithoutTrailingSubstatement implements Serializable
-
Serialized Fields
-
value
Block value
-
-
-
Class hydra.ext.java.syntax.StatementWithoutTrailingSubstatement.Break extends StatementWithoutTrailingSubstatement implements Serializable
-
Serialized Fields
-
value
BreakStatement value
-
-
-
Class hydra.ext.java.syntax.StatementWithoutTrailingSubstatement.Continue extends StatementWithoutTrailingSubstatement implements Serializable
-
Serialized Fields
-
value
ContinueStatement value
-
-
-
Class hydra.ext.java.syntax.StatementWithoutTrailingSubstatement.Do extends StatementWithoutTrailingSubstatement implements Serializable
-
Serialized Fields
-
value
DoStatement value
-
-
-
Class hydra.ext.java.syntax.StatementWithoutTrailingSubstatement.Empty extends StatementWithoutTrailingSubstatement implements Serializable
-
Class hydra.ext.java.syntax.StatementWithoutTrailingSubstatement.Expression extends StatementWithoutTrailingSubstatement implements Serializable
-
Serialized Fields
-
value
ExpressionStatement value
-
-
-
Class hydra.ext.java.syntax.StatementWithoutTrailingSubstatement.Return extends StatementWithoutTrailingSubstatement implements Serializable
-
Serialized Fields
-
value
ReturnStatement value
-
-
-
Class hydra.ext.java.syntax.StatementWithoutTrailingSubstatement.Switch extends StatementWithoutTrailingSubstatement implements Serializable
-
Serialized Fields
-
value
SwitchStatement value
-
-
-
Class hydra.ext.java.syntax.StatementWithoutTrailingSubstatement.Synchronized extends StatementWithoutTrailingSubstatement implements Serializable
-
Serialized Fields
-
value
SynchronizedStatement value
-
-
-
Class hydra.ext.java.syntax.StatementWithoutTrailingSubstatement.Throw extends StatementWithoutTrailingSubstatement implements Serializable
-
Serialized Fields
-
value
ThrowStatement value
-
-
-
Class hydra.ext.java.syntax.StatementWithoutTrailingSubstatement.Try extends StatementWithoutTrailingSubstatement implements Serializable
-
Serialized Fields
-
value
TryStatement value
-
-
-
Class hydra.ext.java.syntax.StaticImportOnDemandDeclaration extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
TypeName value
-
-
-
Class hydra.ext.java.syntax.StaticInitializer extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Block value
-
-
-
Class hydra.ext.java.syntax.StringLiteral extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.java.syntax.SwitchBlock extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<SwitchBlock_Pair> value
-
-
-
Class hydra.ext.java.syntax.SwitchBlock_Pair extends java.lang.Object implements Serializable
-
Serialized Fields
-
labels
ConsList<SwitchLabel> labels
-
statements
ConsList<SwitchBlockStatementGroup> statements
-
-
-
Class hydra.ext.java.syntax.SwitchBlockStatementGroup extends java.lang.Object implements Serializable
-
Serialized Fields
-
labels
ConsList<SwitchLabel> labels
-
statements
ConsList<BlockStatement> statements
-
-
-
Class hydra.ext.java.syntax.SwitchLabel extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.SwitchLabel.Constant extends SwitchLabel implements Serializable
-
Serialized Fields
-
value
ConstantExpression value
-
-
-
Class hydra.ext.java.syntax.SwitchLabel.Default extends SwitchLabel implements Serializable
-
Class hydra.ext.java.syntax.SwitchLabel.EnumConstant extends SwitchLabel implements Serializable
-
Serialized Fields
-
value
EnumConstantName value
-
-
-
Class hydra.ext.java.syntax.SwitchStatement extends java.lang.Object implements Serializable
-
Serialized Fields
-
block
SwitchBlock block
-
cond
Expression cond
-
-
-
Class hydra.ext.java.syntax.SynchronizedStatement extends java.lang.Object implements Serializable
-
Serialized Fields
-
block
Block block
-
expression
Expression expression
-
-
-
Class hydra.ext.java.syntax.Throws extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<ExceptionType> value
-
-
-
Class hydra.ext.java.syntax.ThrowStatement extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.java.syntax.TryStatement extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.TryStatement_Simple extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.TryStatement_WithFinally extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.TryStatement.Simple extends TryStatement implements Serializable
-
Serialized Fields
-
value
TryStatement_Simple value
-
-
-
Class hydra.ext.java.syntax.TryStatement.WithFinally extends TryStatement implements Serializable
-
Serialized Fields
-
value
TryStatement_WithFinally value
-
-
-
Class hydra.ext.java.syntax.TryStatement.WithResources extends TryStatement implements Serializable
-
Serialized Fields
-
value
TryWithResourcesStatement value
-
-
-
Class hydra.ext.java.syntax.TryWithResourcesStatement extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.Type extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.Type.Primitive extends Type implements Serializable
-
Serialized Fields
-
value
PrimitiveTypeWithAnnotations value
-
-
-
Class hydra.ext.java.syntax.Type.Reference extends Type implements Serializable
-
Serialized Fields
-
value
ReferenceType value
-
-
-
Class hydra.ext.java.syntax.TypeArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.TypeArgument.Reference extends TypeArgument implements Serializable
-
Serialized Fields
-
value
ReferenceType value
-
-
-
Class hydra.ext.java.syntax.TypeArgument.Wildcard extends TypeArgument implements Serializable
-
Serialized Fields
-
value
Wildcard value
-
-
-
Class hydra.ext.java.syntax.TypeArgumentsOrDiamond extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.TypeArgumentsOrDiamond.Arguments extends TypeArgumentsOrDiamond implements Serializable
-
Serialized Fields
-
value
ConsList<TypeArgument> value
-
-
-
Class hydra.ext.java.syntax.TypeArgumentsOrDiamond.Diamond extends TypeArgumentsOrDiamond implements Serializable
-
Class hydra.ext.java.syntax.TypeBound extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.TypeBound_ClassOrInterface extends java.lang.Object implements Serializable
-
Serialized Fields
-
additional
ConsList<AdditionalBound> additional
-
type
ClassOrInterfaceType type
-
-
-
Class hydra.ext.java.syntax.TypeBound.ClassOrInterface extends TypeBound implements Serializable
-
Serialized Fields
-
value
TypeBound_ClassOrInterface value
-
-
-
Class hydra.ext.java.syntax.TypeBound.Variable extends TypeBound implements Serializable
-
Serialized Fields
-
value
TypeVariable value
-
-
-
Class hydra.ext.java.syntax.TypeDeclaration extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.TypeDeclaration.Class_ extends TypeDeclaration implements Serializable
-
Serialized Fields
-
value
ClassDeclaration value
-
-
-
Class hydra.ext.java.syntax.TypeDeclaration.Interface extends TypeDeclaration implements Serializable
-
Serialized Fields
-
value
InterfaceDeclaration value
-
-
-
Class hydra.ext.java.syntax.TypeDeclaration.None extends TypeDeclaration implements Serializable
-
Class hydra.ext.java.syntax.TypeDeclarationWithComments extends java.lang.Object implements Serializable
-
Serialized Fields
-
comments
Maybe<java.lang.String> comments
-
value
TypeDeclaration value
-
-
-
Class hydra.ext.java.syntax.TypeIdentifier extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.java.syntax.TypeImportOnDemandDeclaration extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
PackageOrTypeName value
-
-
-
Class hydra.ext.java.syntax.TypeName extends java.lang.Object implements Serializable
-
Serialized Fields
-
identifier
TypeIdentifier identifier
-
qualifier
Maybe<PackageOrTypeName> qualifier
-
-
-
Class hydra.ext.java.syntax.TypeNameArray extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.TypeNameArray.Array extends TypeNameArray implements Serializable
-
Serialized Fields
-
value
TypeNameArray value
-
-
-
Class hydra.ext.java.syntax.TypeNameArray.Simple extends TypeNameArray implements Serializable
-
Serialized Fields
-
value
TypeName value
-
-
-
Class hydra.ext.java.syntax.TypeParameter extends java.lang.Object implements Serializable
-
Serialized Fields
-
bound
Maybe<TypeBound> bound
-
identifier
TypeIdentifier identifier
-
modifiers
ConsList<TypeParameterModifier> modifiers
-
-
-
Class hydra.ext.java.syntax.TypeParameterModifier extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Annotation value
-
-
-
Class hydra.ext.java.syntax.TypeVariable extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
identifier
TypeIdentifier identifier
-
-
-
Class hydra.ext.java.syntax.UnannClassType extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ClassType value
-
-
-
Class hydra.ext.java.syntax.UnannType extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Type value
-
-
-
Class hydra.ext.java.syntax.UnaryExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.UnaryExpression.Minus extends UnaryExpression implements Serializable
-
Serialized Fields
-
value
UnaryExpression value
-
-
-
Class hydra.ext.java.syntax.UnaryExpression.Other extends UnaryExpression implements Serializable
-
Serialized Fields
-
value
UnaryExpressionNotPlusMinus value
-
-
-
Class hydra.ext.java.syntax.UnaryExpression.Plus extends UnaryExpression implements Serializable
-
Serialized Fields
-
value
UnaryExpression value
-
-
-
Class hydra.ext.java.syntax.UnaryExpression.PreDecrement extends UnaryExpression implements Serializable
-
Serialized Fields
-
value
PreDecrementExpression value
-
-
-
Class hydra.ext.java.syntax.UnaryExpression.PreIncrement extends UnaryExpression implements Serializable
-
Serialized Fields
-
value
PreIncrementExpression value
-
-
-
Class hydra.ext.java.syntax.UnaryExpressionNotPlusMinus extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.UnaryExpressionNotPlusMinus.Cast extends UnaryExpressionNotPlusMinus implements Serializable
-
Serialized Fields
-
value
CastExpression value
-
-
-
Class hydra.ext.java.syntax.UnaryExpressionNotPlusMinus.Not extends UnaryExpressionNotPlusMinus implements Serializable
-
Serialized Fields
-
value
UnaryExpression value
-
-
-
Class hydra.ext.java.syntax.UnaryExpressionNotPlusMinus.Postfix extends UnaryExpressionNotPlusMinus implements Serializable
-
Serialized Fields
-
value
PostfixExpression value
-
-
-
Class hydra.ext.java.syntax.UnaryExpressionNotPlusMinus.Tilde extends UnaryExpressionNotPlusMinus implements Serializable
-
Serialized Fields
-
value
UnaryExpression value
-
-
-
Class hydra.ext.java.syntax.UnqualifiedClassInstanceCreationExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
arguments
ConsList<Expression> arguments
-
body
Maybe<ClassBody> body
-
classOrInterface
ClassOrInterfaceTypeToInstantiate classOrInterface
-
typeArguments
ConsList<TypeArgument> typeArguments
-
-
-
Class hydra.ext.java.syntax.VariableAccess extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.VariableAccess.ExpressionName extends VariableAccess implements Serializable
-
Serialized Fields
-
value
ExpressionName value
-
-
-
Class hydra.ext.java.syntax.VariableAccess.FieldAccess extends VariableAccess implements Serializable
-
Serialized Fields
-
value
FieldAccess value
-
-
-
Class hydra.ext.java.syntax.VariableArityParameter extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
identifier
Identifier identifier
-
modifiers
VariableModifier modifiers
-
type
UnannType type
-
-
-
Class hydra.ext.java.syntax.VariableDeclarator extends java.lang.Object implements Serializable
-
Serialized Fields
-
id
VariableDeclaratorId id
-
initializer
Maybe<VariableInitializer> initializer
-
-
-
Class hydra.ext.java.syntax.VariableDeclaratorId extends java.lang.Object implements Serializable
-
Serialized Fields
-
dims
Maybe<Dims> dims
-
identifier
Identifier identifier
-
-
-
Class hydra.ext.java.syntax.VariableInitializer extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.VariableInitializer.ArrayInitializer extends VariableInitializer implements Serializable
-
Serialized Fields
-
value
ArrayInitializer value
-
-
-
Class hydra.ext.java.syntax.VariableInitializer.Expression extends VariableInitializer implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.java.syntax.VariableModifier extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.VariableModifier.Annotation extends VariableModifier implements Serializable
-
Serialized Fields
-
value
Annotation value
-
-
-
Class hydra.ext.java.syntax.VariableModifier.Final extends VariableModifier implements Serializable
-
Class hydra.ext.java.syntax.WhileStatement extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
Statement body
-
cond
Maybe<Expression> cond
-
-
-
Class hydra.ext.java.syntax.WhileStatementNoShortIf extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
StatementNoShortIf body
-
cond
Maybe<Expression> cond
-
-
-
Class hydra.ext.java.syntax.Wildcard extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
wildcard
Maybe<WildcardBounds> wildcard
-
-
-
Class hydra.ext.java.syntax.WildcardBounds extends java.lang.Object implements Serializable
-
Class hydra.ext.java.syntax.WildcardBounds.Extends extends WildcardBounds implements Serializable
-
Serialized Fields
-
value
ReferenceType value
-
-
-
Class hydra.ext.java.syntax.WildcardBounds.Super extends WildcardBounds implements Serializable
-
Serialized Fields
-
value
ReferenceType value
-
-
-
-
Package hydra.ext.lisp.syntax
-
Class hydra.ext.lisp.syntax.AndExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
expressions
ConsList<Expression> expressions
The operand expressions
-
-
-
Class hydra.ext.lisp.syntax.Application extends java.lang.Object implements Serializable
-
Serialized Fields
-
arguments
ConsList<Expression> arguments
The arguments -
function
Expression function
The function being applied
-
-
-
Class hydra.ext.lisp.syntax.BeginExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
expressions
ConsList<Expression> expressions
The expressions to evaluate in sequence
-
-
-
Class hydra.ext.lisp.syntax.BooleanStyle extends java.lang.Object implements Serializable
-
Class hydra.ext.lisp.syntax.BooleanStyle.HashTF extends BooleanStyle implements Serializable
-
Class hydra.ext.lisp.syntax.BooleanStyle.TNil extends BooleanStyle implements Serializable
-
Class hydra.ext.lisp.syntax.BooleanStyle.TrueFalse extends BooleanStyle implements Serializable
-
Class hydra.ext.lisp.syntax.CaseClause extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
Expression body
The result expression -
keys
ConsList<Expression> keys
The matching keys (one or more datum values)
-
-
-
Class hydra.ext.lisp.syntax.CaseExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
clauses
ConsList<CaseClause> clauses
The case clauses -
default_
Maybe<Expression> default_
Optional default clause -
scrutinee
Expression scrutinee
The expression being dispatched on
-
-
-
Class hydra.ext.lisp.syntax.CharacterLiteral extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
The character value
-
-
-
Class hydra.ext.lisp.syntax.Comment extends java.lang.Object implements Serializable
-
Serialized Fields
-
style
CommentStyle style
The comment style -
text
java.lang.String text
The comment text
-
-
-
Class hydra.ext.lisp.syntax.CommentStyle extends java.lang.Object implements Serializable
-
Class hydra.ext.lisp.syntax.CommentStyle.Block extends CommentStyle implements Serializable
-
Class hydra.ext.lisp.syntax.CommentStyle.Datum extends CommentStyle implements Serializable
-
Class hydra.ext.lisp.syntax.CommentStyle.Line extends CommentStyle implements Serializable
-
Class hydra.ext.lisp.syntax.CondClause extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
Expression body
The result expression -
condition
Expression condition
The test condition
-
-
-
Class hydra.ext.lisp.syntax.CondExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
clauses
ConsList<CondClause> clauses
The condition-expression pairs -
default_
Maybe<Expression> default_
Optional default expression
-
-
-
Class hydra.ext.lisp.syntax.ConsExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
head
Expression head
The head element -
tail
Expression tail
The tail (typically a list or another cons)
-
-
-
Class hydra.ext.lisp.syntax.ConstantDefinition extends java.lang.Object implements Serializable
-
Serialized Fields
-
doc
Maybe<Docstring> doc
Optional docstring -
name
Symbol name
The constant name -
value
Expression value
The constant value
-
-
-
Class hydra.ext.lisp.syntax.ConstructorPattern extends java.lang.Object implements Serializable
-
Class hydra.ext.lisp.syntax.DestructuringBinding extends java.lang.Object implements Serializable
-
Serialized Fields
-
pattern
DestructuringPattern pattern
The destructuring pattern -
value
Expression value
The value to destructure
-
-
-
Class hydra.ext.lisp.syntax.DestructuringPattern extends java.lang.Object implements Serializable
-
Class hydra.ext.lisp.syntax.DestructuringPattern.Associative extends DestructuringPattern implements Serializable
-
Class hydra.ext.lisp.syntax.DestructuringPattern.Rest extends DestructuringPattern implements Serializable
-
Class hydra.ext.lisp.syntax.DestructuringPattern.Sequential extends DestructuringPattern implements Serializable
-
Class hydra.ext.lisp.syntax.Dialect extends java.lang.Object implements Serializable
-
Class hydra.ext.lisp.syntax.Dialect.Clojure extends Dialect implements Serializable
-
Class hydra.ext.lisp.syntax.Dialect.CommonLisp extends Dialect implements Serializable
-
Class hydra.ext.lisp.syntax.Dialect.EmacsLisp extends Dialect implements Serializable
-
Class hydra.ext.lisp.syntax.Dialect.Scheme extends Dialect implements Serializable
-
Class hydra.ext.lisp.syntax.Docstring extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.lisp.syntax.DoExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
expressions
ConsList<Expression> expressions
The expressions to evaluate in sequence
-
-
-
Class hydra.ext.lisp.syntax.DottedPair extends java.lang.Object implements Serializable
-
Serialized Fields
-
car
Expression car
The first element -
cdr
Expression cdr
The second element
-
-
-
Class hydra.ext.lisp.syntax.ExportDeclaration extends java.lang.Object implements Serializable
-
Class hydra.ext.lisp.syntax.Expression extends java.lang.Object implements Serializable
-
Class hydra.ext.lisp.syntax.Expression.And extends Expression implements Serializable
-
Serialized Fields
-
value
AndExpression value
-
-
-
Class hydra.ext.lisp.syntax.Expression.Application extends Expression implements Serializable
-
Serialized Fields
-
value
Application value
-
-
-
Class hydra.ext.lisp.syntax.Expression.Begin extends Expression implements Serializable
-
Serialized Fields
-
value
BeginExpression value
-
-
-
Class hydra.ext.lisp.syntax.Expression.Case extends Expression implements Serializable
-
Serialized Fields
-
value
CaseExpression value
-
-
-
Class hydra.ext.lisp.syntax.Expression.Cond extends Expression implements Serializable
-
Serialized Fields
-
value
CondExpression value
-
-
-
Class hydra.ext.lisp.syntax.Expression.Cons extends Expression implements Serializable
-
Serialized Fields
-
value
ConsExpression value
-
-
-
Class hydra.ext.lisp.syntax.Expression.Do extends Expression implements Serializable
-
Serialized Fields
-
value
DoExpression value
-
-
-
Class hydra.ext.lisp.syntax.Expression.DottedPair extends Expression implements Serializable
-
Serialized Fields
-
value
DottedPair value
-
-
-
Class hydra.ext.lisp.syntax.Expression.FieldAccess extends Expression implements Serializable
-
Serialized Fields
-
value
FieldAccess value
-
-
-
Class hydra.ext.lisp.syntax.Expression.If extends Expression implements Serializable
-
Serialized Fields
-
value
IfExpression value
-
-
-
Class hydra.ext.lisp.syntax.Expression.Lambda extends Expression implements Serializable
-
Serialized Fields
-
value
Lambda value
-
-
-
Class hydra.ext.lisp.syntax.Expression.Let extends Expression implements Serializable
-
Serialized Fields
-
value
LetExpression value
-
-
-
Class hydra.ext.lisp.syntax.Expression.List extends Expression implements Serializable
-
Serialized Fields
-
value
ListLiteral value
-
-
-
Class hydra.ext.lisp.syntax.Expression.Literal extends Expression implements Serializable
-
Serialized Fields
-
value
Literal value
-
-
-
Class hydra.ext.lisp.syntax.Expression.Map extends Expression implements Serializable
-
Serialized Fields
-
value
MapLiteral value
-
-
-
Class hydra.ext.lisp.syntax.Expression.Not extends Expression implements Serializable
-
Serialized Fields
-
value
NotExpression value
-
-
-
Class hydra.ext.lisp.syntax.Expression.Or extends Expression implements Serializable
-
Serialized Fields
-
value
OrExpression value
-
-
-
Class hydra.ext.lisp.syntax.Expression.Quasiquote extends Expression implements Serializable
-
Serialized Fields
-
value
QuasiquoteExpression value
-
-
-
Class hydra.ext.lisp.syntax.Expression.Quote extends Expression implements Serializable
-
Serialized Fields
-
value
QuoteExpression value
-
-
-
Class hydra.ext.lisp.syntax.Expression.Set extends Expression implements Serializable
-
Serialized Fields
-
value
SetLiteral value
-
-
-
Class hydra.ext.lisp.syntax.Expression.SExpression extends Expression implements Serializable
-
Serialized Fields
-
value
SExpression value
-
-
-
Class hydra.ext.lisp.syntax.Expression.SplicingUnquote extends Expression implements Serializable
-
Serialized Fields
-
value
SplicingUnquoteExpression value
-
-
-
Class hydra.ext.lisp.syntax.Expression.TypeAnnotation extends Expression implements Serializable
-
Serialized Fields
-
value
TypeAnnotation value
-
-
-
Class hydra.ext.lisp.syntax.Expression.Unquote extends Expression implements Serializable
-
Serialized Fields
-
value
UnquoteExpression value
-
-
-
Class hydra.ext.lisp.syntax.Expression.Variable extends Expression implements Serializable
-
Serialized Fields
-
value
VariableReference value
-
-
-
Class hydra.ext.lisp.syntax.Expression.Vector extends Expression implements Serializable
-
Serialized Fields
-
value
VectorLiteral value
-
-
-
Class hydra.ext.lisp.syntax.FieldAccess extends java.lang.Object implements Serializable
-
Serialized Fields
-
field
Symbol field
The field name -
recordType
Symbol recordType
The record type name (used to form accessor name) -
target
Expression target
The expression being accessed
-
-
-
Class hydra.ext.lisp.syntax.FieldDefinition extends java.lang.Object implements Serializable
-
Serialized Fields
-
defaultValue
Maybe<Expression> defaultValue
Optional default value -
name
Symbol name
The field name
-
-
-
Class hydra.ext.lisp.syntax.FloatLiteral extends java.lang.Object implements Serializable
-
Serialized Fields
-
precision
Maybe<java.lang.String> precision
Optional precision hint (e.g. 3.14d0 vs 3.14f0 in Common Lisp) -
value
java.math.BigDecimal value
The float value
-
-
-
Class hydra.ext.lisp.syntax.FunctionDefinition extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
ConsList<Expression> body
The function body (one or more expressions) -
doc
Maybe<Docstring> doc
Optional docstring -
name
Symbol name
The function name -
params
ConsList<Symbol> params
The parameter list -
restParam
Maybe<Symbol> restParam
Optional rest/variadic parameter -
typeHints
ConsList<TypeHint> typeHints
Optional type hints for parameters and return type
-
-
-
Class hydra.ext.lisp.syntax.IfExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
condition
Expression condition
The test expression -
else_
Maybe<Expression> else_
Optional else branch -
then
Expression then
The then branch
-
-
-
Class hydra.ext.lisp.syntax.ImportDeclaration extends java.lang.Object implements Serializable
-
Serialized Fields
-
module
NamespaceName module
The module being imported -
spec
ImportSpec spec
Import specification
-
-
-
Class hydra.ext.lisp.syntax.ImportSpec extends java.lang.Object implements Serializable
-
Class hydra.ext.lisp.syntax.ImportSpec.Alias extends ImportSpec implements Serializable
-
Serialized Fields
-
value
Symbol value
-
-
-
Class hydra.ext.lisp.syntax.ImportSpec.All extends ImportSpec implements Serializable
-
Class hydra.ext.lisp.syntax.ImportSpec.Only extends ImportSpec implements Serializable
-
Class hydra.ext.lisp.syntax.ImportSpec.Rename extends ImportSpec implements Serializable
-
Class hydra.ext.lisp.syntax.IntegerLiteral extends java.lang.Object implements Serializable
-
Serialized Fields
-
bigint
java.lang.Boolean bigint
Whether this is explicitly a big integer (e.g. 42N in Clojure) -
value
java.math.BigInteger value
The integer value
-
-
-
Class hydra.ext.lisp.syntax.Keyword extends java.lang.Object implements Serializable
-
Serialized Fields
-
name
java.lang.String name
The keyword name (without the leading colon) -
namespace
Maybe<java.lang.String> namespace
Optional namespace (e.g. my.ns/foo in Clojure)
-
-
-
Class hydra.ext.lisp.syntax.Lambda extends java.lang.Object implements Serializable
-
Class hydra.ext.lisp.syntax.LetBinding extends java.lang.Object implements Serializable
-
Class hydra.ext.lisp.syntax.LetBinding.Destructuring extends LetBinding implements Serializable
-
Serialized Fields
-
value
DestructuringBinding value
-
-
-
Class hydra.ext.lisp.syntax.LetBinding.Simple extends LetBinding implements Serializable
-
Serialized Fields
-
value
SimpleBinding value
-
-
-
Class hydra.ext.lisp.syntax.LetExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
bindings
ConsList<LetBinding> bindings
The variable bindings -
body
ConsList<Expression> body
The body expressions -
kind
LetKind kind
The kind of let (parallel or sequential)
-
-
-
Class hydra.ext.lisp.syntax.LetKind extends java.lang.Object implements Serializable
-
Class hydra.ext.lisp.syntax.LetKind.Parallel extends LetKind implements Serializable
-
Class hydra.ext.lisp.syntax.LetKind.Recursive extends LetKind implements Serializable
-
Class hydra.ext.lisp.syntax.LetKind.Sequential extends LetKind implements Serializable
-
Class hydra.ext.lisp.syntax.ListLiteral extends java.lang.Object implements Serializable
-
Serialized Fields
-
elements
ConsList<Expression> elements
The list elements -
quoted
java.lang.Boolean quoted
Whether to use quote syntax vs constructor syntax
-
-
-
Class hydra.ext.lisp.syntax.Literal extends java.lang.Object implements Serializable
-
Class hydra.ext.lisp.syntax.Literal.Boolean_ extends Literal implements Serializable
-
Serialized Fields
-
value
java.lang.Boolean value
-
-
-
Class hydra.ext.lisp.syntax.Literal.Character_ extends Literal implements Serializable
-
Serialized Fields
-
value
CharacterLiteral value
-
-
-
Class hydra.ext.lisp.syntax.Literal.Float_ extends Literal implements Serializable
-
Serialized Fields
-
value
FloatLiteral value
-
-
-
Class hydra.ext.lisp.syntax.Literal.Integer_ extends Literal implements Serializable
-
Serialized Fields
-
value
IntegerLiteral value
-
-
-
Class hydra.ext.lisp.syntax.Literal.Keyword extends Literal implements Serializable
-
Serialized Fields
-
value
Keyword value
-
-
-
Class hydra.ext.lisp.syntax.Literal.Nil extends Literal implements Serializable
-
Class hydra.ext.lisp.syntax.Literal.String_ extends Literal implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.lisp.syntax.Literal.Symbol extends Literal implements Serializable
-
Serialized Fields
-
value
Symbol value
-
-
-
Class hydra.ext.lisp.syntax.LiteralPattern extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Literal value
The literal to match
-
-
-
Class hydra.ext.lisp.syntax.MacroDefinition extends java.lang.Object implements Serializable
-
Class hydra.ext.lisp.syntax.MapEntry extends java.lang.Object implements Serializable
-
Serialized Fields
-
key
Expression key
The key expression -
value
Expression value
The value expression
-
-
-
Class hydra.ext.lisp.syntax.MapLiteral extends java.lang.Object implements Serializable
-
Class hydra.ext.lisp.syntax.ModuleDeclaration extends java.lang.Object implements Serializable
-
Serialized Fields
-
doc
Maybe<Docstring> doc
Optional module documentation -
name
NamespaceName name
The module/namespace name
-
-
-
Class hydra.ext.lisp.syntax.NamespaceName extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.lisp.syntax.NilStyle extends java.lang.Object implements Serializable
-
Class hydra.ext.lisp.syntax.NilStyle.EmptyList extends NilStyle implements Serializable
-
Class hydra.ext.lisp.syntax.NilStyle.Nil extends NilStyle implements Serializable
-
Class hydra.ext.lisp.syntax.NotExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
Expression expression
The operand expression
-
-
-
Class hydra.ext.lisp.syntax.OrExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
expressions
ConsList<Expression> expressions
The operand expressions
-
-
-
Class hydra.ext.lisp.syntax.Pattern extends java.lang.Object implements Serializable
-
Class hydra.ext.lisp.syntax.Pattern.Constructor extends Pattern implements Serializable
-
Serialized Fields
-
value
ConstructorPattern value
-
-
-
Class hydra.ext.lisp.syntax.Pattern.Literal extends Pattern implements Serializable
-
Serialized Fields
-
value
LiteralPattern value
-
-
-
Class hydra.ext.lisp.syntax.Pattern.Variable extends Pattern implements Serializable
-
Serialized Fields
-
value
Symbol value
-
-
-
Class hydra.ext.lisp.syntax.Pattern.Wildcard extends Pattern implements Serializable
-
Serialized Fields
-
value
WildcardPattern value
-
-
-
Class hydra.ext.lisp.syntax.Program extends java.lang.Object implements Serializable
-
Serialized Fields
-
dialect
Dialect dialect
The target Lisp dialect -
exports
ConsList<ExportDeclaration> exports
Export/provide declarations -
forms
ConsList<TopLevelFormWithComments> forms
The top-level forms in the program -
imports
ConsList<ImportDeclaration> imports
Import/require declarations -
module
Maybe<ModuleDeclaration> module
Optional module/namespace declaration
-
-
-
Class hydra.ext.lisp.syntax.QualifiedSymbol extends java.lang.Object implements Serializable
-
Serialized Fields
-
name
java.lang.String name
The local name -
namespace
java.lang.String namespace
The namespace or package
-
-
-
Class hydra.ext.lisp.syntax.QuasiquoteExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
Expression body
The quasiquoted form
-
-
-
Class hydra.ext.lisp.syntax.QuoteExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
Expression body
The quoted form
-
-
-
Class hydra.ext.lisp.syntax.RecordTypeDefinition extends java.lang.Object implements Serializable
-
Serialized Fields
-
doc
Maybe<Docstring> doc
Optional docstring -
fields
ConsList<FieldDefinition> fields
The field definitions -
name
Symbol name
The record type name
-
-
-
Class hydra.ext.lisp.syntax.SetLiteral extends java.lang.Object implements Serializable
-
Serialized Fields
-
elements
ConsList<Expression> elements
The set elements
-
-
-
Class hydra.ext.lisp.syntax.SExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.lisp.syntax.SExpression.Atom extends SExpression implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.lisp.syntax.SExpression.List extends SExpression implements Serializable
-
Serialized Fields
-
value
ConsList<SExpression> value
-
-
-
Class hydra.ext.lisp.syntax.SimpleBinding extends java.lang.Object implements Serializable
-
Serialized Fields
-
name
Symbol name
The bound variable -
value
Expression value
The value expression
-
-
-
Class hydra.ext.lisp.syntax.SplicingUnquoteExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
Expression body
The spliced form
-
-
-
Class hydra.ext.lisp.syntax.Symbol extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.lisp.syntax.TopLevelForm extends java.lang.Object implements Serializable
-
Class hydra.ext.lisp.syntax.TopLevelForm.Constant extends TopLevelForm implements Serializable
-
Serialized Fields
-
value
ConstantDefinition value
-
-
-
Class hydra.ext.lisp.syntax.TopLevelForm.Expression extends TopLevelForm implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.lisp.syntax.TopLevelForm.Function extends TopLevelForm implements Serializable
-
Serialized Fields
-
value
FunctionDefinition value
-
-
-
Class hydra.ext.lisp.syntax.TopLevelForm.Macro extends TopLevelForm implements Serializable
-
Serialized Fields
-
value
MacroDefinition value
-
-
-
Class hydra.ext.lisp.syntax.TopLevelForm.RecordType extends TopLevelForm implements Serializable
-
Serialized Fields
-
value
RecordTypeDefinition value
-
-
-
Class hydra.ext.lisp.syntax.TopLevelForm.Variable extends TopLevelForm implements Serializable
-
Serialized Fields
-
value
VariableDefinition value
-
-
-
Class hydra.ext.lisp.syntax.TopLevelFormWithComments extends java.lang.Object implements Serializable
-
Serialized Fields
-
comment
Maybe<Comment> comment
Optional comment -
doc
Maybe<Docstring> doc
Optional documentation string -
form
TopLevelForm form
The form itself
-
-
-
Class hydra.ext.lisp.syntax.TypeAnnotation extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
Expression expression
The annotated expression -
type
TypeSpecifier type
The type specifier
-
-
-
Class hydra.ext.lisp.syntax.TypeHint extends java.lang.Object implements Serializable
-
Serialized Fields
-
name
Symbol name
The annotated symbol -
type
TypeSpecifier type
The type specifier
-
-
-
Class hydra.ext.lisp.syntax.TypeSpecifier extends java.lang.Object implements Serializable
-
Class hydra.ext.lisp.syntax.TypeSpecifier.Either extends TypeSpecifier implements Serializable
-
Serialized Fields
-
value
ConsList<TypeSpecifier> value
-
-
-
Class hydra.ext.lisp.syntax.TypeSpecifier.Function extends TypeSpecifier implements Serializable
-
Serialized Fields
-
value
ConsList<TypeSpecifier> value
-
-
-
Class hydra.ext.lisp.syntax.TypeSpecifier.List extends TypeSpecifier implements Serializable
-
Serialized Fields
-
value
TypeSpecifier value
-
-
-
Class hydra.ext.lisp.syntax.TypeSpecifier.Map extends TypeSpecifier implements Serializable
-
Serialized Fields
-
value
ConsList<TypeSpecifier> value
-
-
-
Class hydra.ext.lisp.syntax.TypeSpecifier.Maybe extends TypeSpecifier implements Serializable
-
Serialized Fields
-
value
TypeSpecifier value
-
-
-
Class hydra.ext.lisp.syntax.TypeSpecifier.Named extends TypeSpecifier implements Serializable
-
Serialized Fields
-
value
Symbol value
-
-
-
Class hydra.ext.lisp.syntax.TypeSpecifier.Pair extends TypeSpecifier implements Serializable
-
Serialized Fields
-
value
ConsList<TypeSpecifier> value
-
-
-
Class hydra.ext.lisp.syntax.TypeSpecifier.Set extends TypeSpecifier implements Serializable
-
Serialized Fields
-
value
TypeSpecifier value
-
-
-
Class hydra.ext.lisp.syntax.TypeSpecifier.Unit extends TypeSpecifier implements Serializable
-
Class hydra.ext.lisp.syntax.UnquoteExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
Expression body
The unquoted form
-
-
-
Class hydra.ext.lisp.syntax.VariableDefinition extends java.lang.Object implements Serializable
-
Serialized Fields
-
doc
Maybe<Docstring> doc
Optional docstring -
name
Symbol name
The variable name -
value
Expression value
The initial value
-
-
-
Class hydra.ext.lisp.syntax.VariableReference extends java.lang.Object implements Serializable
-
Serialized Fields
-
functionNamespace
java.lang.Boolean functionNamespace
Whether to reference from the function namespace. In Lisp-2 dialects (Common Lisp), this emits #'name. In Lisp-1 dialects, this has no effect. -
name
Symbol name
The variable name
-
-
-
Class hydra.ext.lisp.syntax.VectorLiteral extends java.lang.Object implements Serializable
-
Serialized Fields
-
elements
ConsList<Expression> elements
The vector elements
-
-
-
Class hydra.ext.lisp.syntax.WildcardPattern extends java.lang.Object implements Serializable
-
-
Package hydra.ext.org.apache.tinkerpop.features
-
Class hydra.ext.org.apache.tinkerpop.features.DataTypeFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
supportsBooleanArrayValues
java.lang.Boolean supportsBooleanArrayValues
Supports setting of an array of boolean values. -
supportsBooleanValues
java.lang.Boolean supportsBooleanValues
Supports setting of a boolean value. -
supportsByteArrayValues
java.lang.Boolean supportsByteArrayValues
Supports setting of an array of byte values. -
supportsByteValues
java.lang.Boolean supportsByteValues
Supports setting of a byte value. -
supportsDoubleArrayValues
java.lang.Boolean supportsDoubleArrayValues
Supports setting of an array of double values. -
supportsDoubleValues
java.lang.Boolean supportsDoubleValues
Supports setting of a double value. -
supportsFloatArrayValues
java.lang.Boolean supportsFloatArrayValues
Supports setting of an array of float values. -
supportsFloatValues
java.lang.Boolean supportsFloatValues
Supports setting of a float value. -
supportsIntegerArrayValues
java.lang.Boolean supportsIntegerArrayValues
Supports setting of an array of integer values. -
supportsIntegerValues
java.lang.Boolean supportsIntegerValues
Supports setting of a integer value. -
supportsLongArrayValues
java.lang.Boolean supportsLongArrayValues
Supports setting of an array of long values. -
supportsLongValues
java.lang.Boolean supportsLongValues
Supports setting of a long value. -
supportsMapValues
java.lang.Boolean supportsMapValues
Supports setting of a Map value. -
supportsMixedListValues
java.lang.Boolean supportsMixedListValues
Supports setting of a List value. -
supportsSerializableValues
java.lang.Boolean supportsSerializableValues
Supports setting of a Java serializable value. -
supportsStringArrayValues
java.lang.Boolean supportsStringArrayValues
Supports setting of an array of string values. -
supportsStringValues
java.lang.Boolean supportsStringValues
Supports setting of a string value. -
supportsUniformListValues
java.lang.Boolean supportsUniformListValues
Supports setting of a List value.
-
-
-
Class hydra.ext.org.apache.tinkerpop.features.EdgeFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
elementFeatures
ElementFeatures elementFeatures
-
properties
EdgePropertyFeatures properties
-
supportsAddEdges
java.lang.Boolean supportsAddEdges
Determines if an Edge can be added to a Vertex. -
supportsRemoveEdges
java.lang.Boolean supportsRemoveEdges
Determines if an Edge can be removed from a Vertex. -
supportsUpsert
java.lang.Boolean supportsUpsert
Determines if the Graph implementation uses upsert functionality as opposed to insert functionality for Vertex.addEdge(String, Vertex, Object...).
-
-
-
Class hydra.ext.org.apache.tinkerpop.features.EdgePropertyFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
propertyFeatures
PropertyFeatures propertyFeatures
-
-
-
Class hydra.ext.org.apache.tinkerpop.features.ElementFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
supportsAddProperty
java.lang.Boolean supportsAddProperty
Determines if an Element allows properties to be added. -
supportsAnyIds
java.lang.Boolean supportsAnyIds
Determines if an Element any Java object is a suitable identifier. -
supportsCustomIds
java.lang.Boolean supportsCustomIds
Determines if an Element has a specific custom object as their internal representation. -
supportsNumericIds
java.lang.Boolean supportsNumericIds
Determines if an Element has numeric identifiers as their internal representation. -
supportsRemoveProperty
java.lang.Boolean supportsRemoveProperty
Determines if an Element allows properties to be removed. -
supportsStringIds
java.lang.Boolean supportsStringIds
Determines if an Element has string identifiers as their internal representation. -
supportsUserSuppliedIds
java.lang.Boolean supportsUserSuppliedIds
Determines if an Element can have a user defined identifier. -
supportsUuidIds
java.lang.Boolean supportsUuidIds
Determines if an Element has UUID identifiers as their internal representation.
-
-
-
Class hydra.ext.org.apache.tinkerpop.features.ExtraFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
supportsMapKey
java.util.function.Function<Type,java.lang.Boolean> supportsMapKey
-
-
-
Class hydra.ext.org.apache.tinkerpop.features.Features extends java.lang.Object implements Serializable
-
Serialized Fields
-
edge
EdgeFeatures edge
Gets the features related to edge operation. -
graph
GraphFeatures graph
Gets the features related to graph operation. -
vertex
VertexFeatures vertex
Gets the features related to vertex operation.
-
-
-
Class hydra.ext.org.apache.tinkerpop.features.GraphFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
supportsComputer
java.lang.Boolean supportsComputer
Determines if the Graph implementation supports GraphComputer based processing. -
supportsConcurrentAccess
java.lang.Boolean supportsConcurrentAccess
Determines if the Graph implementation supports more than one connection to the same instance at the same time. -
supportsIoRead
java.lang.Boolean supportsIoRead
Determines if the Graph implementations supports read operations as executed with the GraphTraversalSource.io(String) step. -
supportsIoWrite
java.lang.Boolean supportsIoWrite
Determines if the Graph implementations supports write operations as executed with the GraphTraversalSource.io(String) step. -
supportsPersistence
java.lang.Boolean supportsPersistence
Determines if the Graph implementation supports persisting it's contents natively to disk. -
supportsThreadedTransactions
java.lang.Boolean supportsThreadedTransactions
Determines if the Graph implementation supports threaded transactions which allow a transaction to be executed across multiple threads via Transaction.createThreadedTx(). -
supportsTransactions
java.lang.Boolean supportsTransactions
Determines if the Graph implementations supports transactions. -
variables
VariableFeatures variables
Gets the features related to graph sideEffects operation.
-
-
-
Class hydra.ext.org.apache.tinkerpop.features.PropertyFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
dataTypeFeatures
DataTypeFeatures dataTypeFeatures
-
supportsProperties
java.lang.Boolean supportsProperties
Determines if an Element allows for the processing of at least one data type defined by the features.
-
-
-
Class hydra.ext.org.apache.tinkerpop.features.VariableFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
dataTypeFeatures
DataTypeFeatures dataTypeFeatures
-
supportsVariables
java.lang.Boolean supportsVariables
If any of the features on Graph.Features.VariableFeatures is true then this value must be true.
-
-
-
Class hydra.ext.org.apache.tinkerpop.features.VertexFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
elementFeatures
ElementFeatures elementFeatures
-
properties
VertexPropertyFeatures properties
-
supportsAddVertices
java.lang.Boolean supportsAddVertices
Determines if a Vertex can be added to the Graph. -
supportsDuplicateMultiProperties
java.lang.Boolean supportsDuplicateMultiProperties
Determines if a Vertex can support non-unique values on the same key. -
supportsMetaProperties
java.lang.Boolean supportsMetaProperties
Determines if a Vertex can support properties on vertex properties. -
supportsMultiProperties
java.lang.Boolean supportsMultiProperties
Determines if a Vertex can support multiple properties with the same key. -
supportsRemoveVertices
java.lang.Boolean supportsRemoveVertices
Determines if a Vertex can be removed from the Graph. -
supportsUpsert
java.lang.Boolean supportsUpsert
Determines if the Graph implementation uses upsert functionality as opposed to insert functionality for Graph.addVertex(String).
-
-
-
Class hydra.ext.org.apache.tinkerpop.features.VertexPropertyFeatures extends java.lang.Object implements Serializable
-
Serialized Fields
-
dataTypeFeatures
DataTypeFeatures dataTypeFeatures
-
elementFeatures
ElementFeatures elementFeatures
-
propertyFeatures
PropertyFeatures propertyFeatures
-
supportsRemove
java.lang.Boolean supportsRemove
Determines if a VertexProperty allows properties to be removed.
-
-
-
-
Package hydra.ext.org.apache.tinkerpop.gremlin
-
Class hydra.ext.org.apache.tinkerpop.gremlin.BooleanArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.BooleanArgument.Value extends BooleanArgument implements Serializable
-
Serialized Fields
-
value
java.lang.Boolean value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.BooleanArgument.Variable extends BooleanArgument implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ByArgs extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ByArgs.Order extends ByArgs implements Serializable
-
Serialized Fields
-
value
TraversalOrderArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ByArgs.Other extends ByArgs implements Serializable
-
Serialized Fields
-
value
ByOtherArgs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ByArgs.Token extends ByArgs implements Serializable
-
Serialized Fields
-
value
TraversalTokenArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ByOtherArgs extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ByOtherArgs.Comparator extends ByOtherArgs implements Serializable
-
Serialized Fields
-
value
Maybe<TraversalComparatorArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ByOtherArgs.Other extends ByOtherArgs implements Serializable
-
Serialized Fields
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ChainedTraversal extends java.lang.Object implements Serializable
-
Serialized Fields
-
first
TraversalMethod first
-
rest
ChainedTraversalElement rest
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ChainedTraversalElement extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ChainedTraversalElement.Method extends ChainedTraversalElement implements Serializable
-
Serialized Fields
-
value
TraversalMethod value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ChainedTraversalElement.Self extends ChainedTraversalElement implements Serializable
-
Serialized Fields
-
value
TraversalSelfMethod value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ChooseArgs extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ChooseArgs.Function extends ChooseArgs implements Serializable
-
Serialized Fields
-
value
TraversalFunctionArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ChooseArgs.PredicateTraversal extends ChooseArgs implements Serializable
-
Serialized Fields
-
value
PredicateTraversalArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ChooseArgs.Traversal extends ChooseArgs implements Serializable
-
Serialized Fields
-
value
NestedTraversalArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ConcatArgs extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ConcatArgs.String_ extends ConcatArgs implements Serializable
-
Serialized Fields
-
value
ConsList<StringNullableArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ConcatArgs.Traversal extends ConcatArgs implements Serializable
-
Serialized Fields
-
value
ConsList<NestedTraversal> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.Configuration extends java.lang.Object implements Serializable
-
Serialized Fields
-
key
KeywordOrIdentifier key
-
value
GenericLiteralArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ConnectedComponentConstants extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ConnectedComponentConstants.Component extends ConnectedComponentConstants implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ConnectedComponentConstants.Edges extends ConnectedComponentConstants implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ConnectedComponentConstants.PropertyName extends ConnectedComponentConstants implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.DateAddArgs extends java.lang.Object implements Serializable
-
Serialized Fields
-
duration
IntegerArgument duration
-
unit
TraversalDTArgument unit
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.DateArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.DateArgument.Value extends DateArgument implements Serializable
-
Serialized Fields
-
value
DateLiteral value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.DateArgument.Variable extends DateArgument implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.DateDiffArgs extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.DateDiffArgs.Date extends DateDiffArgs implements Serializable
-
Serialized Fields
-
value
DateArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.DateDiffArgs.Traversal extends DateDiffArgs implements Serializable
-
Serialized Fields
-
value
NestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.DateLiteral extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Maybe<StringArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.DedupArgs extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.DedupArgs.ScopeString extends DedupArgs implements Serializable
-
Serialized Fields
-
value
ScopeStringArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.DedupArgs.String_ extends DedupArgs implements Serializable
-
Serialized Fields
-
value
ConsList<StringNullableArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.DirectionAndVarargs extends java.lang.Object implements Serializable
-
Serialized Fields
-
direction
TraversalDirectionArgument direction
-
varargs
ConsList<StringNullableArgument> varargs
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.FloatArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.FloatArgument.Value extends FloatArgument implements Serializable
-
Serialized Fields
-
value
FloatLiteral value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.FloatArgument.Variable extends FloatArgument implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.FloatLiteral extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.math.BigDecimal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.FromArgs extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.FromArgs.String_ extends FromArgs implements Serializable
-
Serialized Fields
-
value
StringArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.FromArgs.Traversal extends FromArgs implements Serializable
-
Serialized Fields
-
value
NestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.FromArgs.Vertex extends FromArgs implements Serializable
-
Serialized Fields
-
value
StructureVertexArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteral extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteral.Boolean_ extends GenericLiteral implements Serializable
-
Serialized Fields
-
value
java.lang.Boolean value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteral.Date extends GenericLiteral implements Serializable
-
Serialized Fields
-
value
DateLiteral value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteral.GenericLiteralCollection extends GenericLiteral implements Serializable
-
Serialized Fields
-
value
GenericLiteralCollection value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteral.GenericLiteralMap extends GenericLiteral implements Serializable
-
Serialized Fields
-
value
GenericLiteralMap value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteral.GenericLiteralRange extends GenericLiteral implements Serializable
-
Serialized Fields
-
value
GenericLiteralRange value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteral.GenericLiteralSet extends GenericLiteral implements Serializable
-
Serialized Fields
-
value
GenericLiteralSet value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteral.Inf extends GenericLiteral implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteral.Nan extends GenericLiteral implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteral.NestedTraversal extends GenericLiteral implements Serializable
-
Serialized Fields
-
value
NestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteral.Null extends GenericLiteral implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteral.Numeric extends GenericLiteral implements Serializable
-
Serialized Fields
-
value
NumericLiteral value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteral.String_ extends GenericLiteral implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteral.StructureVertex extends GenericLiteral implements Serializable
-
Serialized Fields
-
value
StructureVertex value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteral.TerminatedTraversal extends GenericLiteral implements Serializable
-
Serialized Fields
-
value
TerminatedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteral.TraversalCardinality extends GenericLiteral implements Serializable
-
Serialized Fields
-
value
TraversalCardinality value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteral.TraversalDirection extends GenericLiteral implements Serializable
-
Serialized Fields
-
value
TraversalDirection value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteral.TraversalDT extends GenericLiteral implements Serializable
-
Serialized Fields
-
value
TraversalDT value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteral.TraversalMerge extends GenericLiteral implements Serializable
-
Serialized Fields
-
value
TraversalMerge value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteral.TraversalPick extends GenericLiteral implements Serializable
-
Serialized Fields
-
value
TraversalPick value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteral.TraversalToken extends GenericLiteral implements Serializable
-
Serialized Fields
-
value
TraversalToken value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralArgument.Value extends GenericLiteralArgument implements Serializable
-
Serialized Fields
-
value
GenericLiteral value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralArgument.Variable extends GenericLiteralArgument implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralArgumentAndNestedTraversal extends java.lang.Object implements Serializable
-
Serialized Fields
-
object
GenericLiteralArgument object
-
traversal
NestedTraversal traversal
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralArgumentAndOptionalTraversalBiFunctionArgument extends java.lang.Object implements Serializable
-
Serialized Fields
-
biFunction
Maybe<TraversalBiFunctionArgument> biFunction
-
literal
GenericLiteralArgument literal
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralArgumentAndTraversalBiFunctionArgument extends java.lang.Object implements Serializable
-
Serialized Fields
-
biFunction
TraversalBiFunctionArgument biFunction
-
literal
GenericLiteralArgument literal
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralArgumentAndTraversalPredicate extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralArgumentAndTraversalPredicate.Literal extends GenericLiteralArgumentAndTraversalPredicate implements Serializable
-
Serialized Fields
-
value
GenericLiteralArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralArgumentAndTraversalPredicate.Predicate extends GenericLiteralArgumentAndTraversalPredicate implements Serializable
-
Serialized Fields
-
value
TraversalPredicate value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralCollection extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<GenericLiteral> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralList extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<GenericLiteral> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralListArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralListArgument.Value extends GenericLiteralListArgument implements Serializable
-
Serialized Fields
-
value
GenericLiteralList value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralListArgument.Variable extends GenericLiteralListArgument implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralMap extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralMapArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralMapArgument.Value extends GenericLiteralMapArgument implements Serializable
-
Serialized Fields
-
value
GenericLiteralMap value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralMapArgument.Variable extends GenericLiteralMapArgument implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralMapNullableArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralMapNullableArgument.Value extends GenericLiteralMapNullableArgument implements Serializable
-
Serialized Fields
-
value
Maybe<GenericLiteralMap> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralMapNullableArgument.Variable extends GenericLiteralMapNullableArgument implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralMapNullableArgumentAndTraversalCardinalityArgument extends java.lang.Object implements Serializable
-
Serialized Fields
-
cardinality
TraversalCardinalityArgument cardinality
-
object
GenericLiteralMapNullableArgument object
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralMapNullableArgumentOrNestedTraversal extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralMapNullableArgumentOrNestedTraversal.Map extends GenericLiteralMapNullableArgumentOrNestedTraversal implements Serializable
-
Serialized Fields
-
value
GenericLiteralMapNullableArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralMapNullableArgumentOrNestedTraversal.Traversal extends GenericLiteralMapNullableArgumentOrNestedTraversal implements Serializable
-
Serialized Fields
-
value
NestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralRange extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralRange.Integer_ extends GenericLiteralRange implements Serializable
-
Serialized Fields
-
value
IntegerRange value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralRange.String_ extends GenericLiteralRange implements Serializable
-
Serialized Fields
-
value
StringRange value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.GenericLiteralSet extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<GenericLiteral> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.HasArgs extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.HasArgs.String_ extends HasArgs implements Serializable
-
Serialized Fields
-
value
HasStringArgumentAndOptionalStringLiteralVarargs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.HasArgs.TraversalToken extends HasArgs implements Serializable
-
Serialized Fields
-
value
HasTraversalTokenArgs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.HasStringArgumentAndOptionalStringLiteralVarargs extends java.lang.Object implements Serializable
-
Serialized Fields
-
rest
Maybe<HasStringArgumentAndOptionalStringLiteralVarargsRest> rest
-
string
StringNullableArgument string
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.HasStringArgumentAndOptionalStringLiteralVarargsRest extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.HasStringArgumentAndOptionalStringLiteralVarargsRest.Object_ extends HasStringArgumentAndOptionalStringLiteralVarargsRest implements Serializable
-
Serialized Fields
-
value
GenericLiteralArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.HasStringArgumentAndOptionalStringLiteralVarargsRest.Predicate extends HasStringArgumentAndOptionalStringLiteralVarargsRest implements Serializable
-
Serialized Fields
-
value
TraversalPredicate value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.HasStringArgumentAndOptionalStringLiteralVarargsRest.StringObject extends HasStringArgumentAndOptionalStringLiteralVarargsRest implements Serializable
-
Serialized Fields
-
value
StringNullableArgumentAndGenericLiteralArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.HasStringArgumentAndOptionalStringLiteralVarargsRest.StringPredicate extends HasStringArgumentAndOptionalStringLiteralVarargsRest implements Serializable
-
Serialized Fields
-
value
StringNullableArgumentAndTraversalPredicate value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.HasStringArgumentAndOptionalStringLiteralVarargsRest.Traversal extends HasStringArgumentAndOptionalStringLiteralVarargsRest implements Serializable
-
Serialized Fields
-
value
NestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.HasTraversalTokenArgs extends java.lang.Object implements Serializable
-
Serialized Fields
-
rest
HasTraversalTokenArgsRest rest
-
traversalToken
TraversalTokenArgument traversalToken
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.HasTraversalTokenArgsRest extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.HasTraversalTokenArgsRest.Literal extends HasTraversalTokenArgsRest implements Serializable
-
Serialized Fields
-
value
GenericLiteralArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.HasTraversalTokenArgsRest.Predicate extends HasTraversalTokenArgsRest implements Serializable
-
Serialized Fields
-
value
TraversalPredicate value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.HasTraversalTokenArgsRest.Traversal extends HasTraversalTokenArgsRest implements Serializable
-
Serialized Fields
-
value
NestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.Identifier extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.IntegerArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.IntegerArgument.Value extends IntegerArgument implements Serializable
-
Serialized Fields
-
value
IntegerLiteral value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.IntegerArgument.Variable extends IntegerArgument implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.IntegerLiteral extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.math.BigInteger value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.IntegerRange extends java.lang.Object implements Serializable
-
Serialized Fields
-
left
IntegerLiteral left
-
right
IntegerLiteral right
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.IoOptionsKeys extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.IoOptionsKeys.Reader extends IoOptionsKeys implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.IoOptionsKeys.Writer extends IoOptionsKeys implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.IoOptionsValues extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.IoOptionsValues.Graphml extends IoOptionsValues implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.IoOptionsValues.Graphson extends IoOptionsValues implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.IoOptionsValues.Gryo extends IoOptionsValues implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.Keyword extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.Keyword.Edges extends Keyword implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.Keyword.Keys extends Keyword implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.Keyword.New extends Keyword implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.Keyword.Values extends Keyword implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.KeywordOrIdentifier extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.KeywordOrIdentifier.Identifier extends KeywordOrIdentifier implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.KeywordOrIdentifier.Keyword extends KeywordOrIdentifier implements Serializable
-
Serialized Fields
-
value
Keyword value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.MapEntry extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.MapEntry.Key extends MapEntry implements Serializable
-
Serialized Fields
-
value
MapKey value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.MapEntry.Value extends MapEntry implements Serializable
-
Serialized Fields
-
value
GenericLiteral value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.MapKey extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.MapKey.Collection extends MapKey implements Serializable
-
Serialized Fields
-
value
GenericLiteralCollection value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.MapKey.Identifier extends MapKey implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.MapKey.Keyword extends MapKey implements Serializable
-
Serialized Fields
-
value
Keyword value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.MapKey.Map extends MapKey implements Serializable
-
Serialized Fields
-
value
GenericLiteralMap value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.MapKey.Numeric extends MapKey implements Serializable
-
Serialized Fields
-
value
NumericLiteral value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.MapKey.Set extends MapKey implements Serializable
-
Serialized Fields
-
value
GenericLiteralSet value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.MapKey.String_ extends MapKey implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.MapKey.TraversalDirection extends MapKey implements Serializable
-
Serialized Fields
-
value
TraversalDirection value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.MapKey.TraversalToken extends MapKey implements Serializable
-
Serialized Fields
-
value
TraversalToken value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.NestedTraversal extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.NestedTraversal.Anonymous extends NestedTraversal implements Serializable
-
Serialized Fields
-
value
ChainedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.NestedTraversal.Chained extends NestedTraversal implements Serializable
-
Serialized Fields
-
value
ChainedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.NestedTraversal.Root extends NestedTraversal implements Serializable
-
Serialized Fields
-
value
RootTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.NestedTraversalArgument extends java.lang.Object implements Serializable
-
Serialized Fields
-
traversal1
NestedTraversal traversal1
-
traversal2
Maybe<NestedTraversal> traversal2
-
traversal3
Maybe<NestedTraversal> traversal3
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.NumericLiteral extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.NumericLiteral.Float_ extends NumericLiteral implements Serializable
-
Serialized Fields
-
value
FloatLiteral value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.NumericLiteral.Integer_ extends NumericLiteral implements Serializable
-
Serialized Fields
-
value
IntegerLiteral value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.OptionalStringArgumentAndNestedTraversal extends java.lang.Object implements Serializable
-
Serialized Fields
-
string
Maybe<StringArgument> string
-
traversal
NestedTraversal traversal
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.OptionalTraversalScopeArgumentAndIntegerArgument extends java.lang.Object implements Serializable
-
Serialized Fields
-
long_
IntegerArgument long_
-
scope
Maybe<TraversalScopeArgument> scope
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.OptionalTraversalScopeArgumentAndStringArgument extends java.lang.Object implements Serializable
-
Serialized Fields
-
scope
Maybe<TraversalScopeArgument> scope
-
string
StringArgument string
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.OptionArgs extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.OptionArgs.MergeMap extends OptionArgs implements Serializable
-
Serialized Fields
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.OptionArgs.MergeTraversal extends OptionArgs implements Serializable
-
Serialized Fields
-
value
TraversalMergeArgumentAndNestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.OptionArgs.ObjectTraversal extends OptionArgs implements Serializable
-
Serialized Fields
-
value
GenericLiteralArgumentAndNestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.OptionArgs.PredicateTraversal extends OptionArgs implements Serializable
-
Serialized Fields
-
value
TraversalPredicateAndNestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.OptionArgs.Traversal extends OptionArgs implements Serializable
-
Serialized Fields
-
value
NestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.PageRankConstants extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.PageRankConstants.Edges extends PageRankConstants implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.PageRankConstants.PropertyName extends PageRankConstants implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.PageRankConstants.Times extends PageRankConstants implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.PeerPressureConstants extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.PeerPressureConstants.Edges extends PeerPressureConstants implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.PeerPressureConstants.PropertyName extends PeerPressureConstants implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.PeerPressureConstants.Times extends PeerPressureConstants implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.PopStringsArgument extends java.lang.Object implements Serializable
-
Serialized Fields
-
pop
TraversalPopArgument pop
-
string
ConsList<StringArgument> string
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.PredicateOrTraversal extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.PredicateOrTraversal.Predicate extends PredicateOrTraversal implements Serializable
-
Serialized Fields
-
value
TraversalPredicate value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.PredicateOrTraversal.Traversal extends PredicateOrTraversal implements Serializable
-
Serialized Fields
-
value
NestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.PredicateTraversalArgument extends java.lang.Object implements Serializable
-
Serialized Fields
-
predicate
TraversalPredicate predicate
-
traversal1
NestedTraversal traversal1
-
traversal2
Maybe<NestedTraversal> traversal2
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.PropertyArgs extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.PropertyArgs.CardinalityObject extends PropertyArgs implements Serializable
-
Serialized Fields
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.PropertyArgs.CardinalityObjects extends PropertyArgs implements Serializable
-
Serialized Fields
-
value
TraversalCardinalityArgumentAndObjects value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.PropertyArgs.Object_ extends PropertyArgs implements Serializable
-
Serialized Fields
-
value
GenericLiteralMapNullableArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.PropertyArgs.Objects extends PropertyArgs implements Serializable
-
Serialized Fields
-
value
ConsList<GenericLiteralArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.Query extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.Query.Empty extends Query implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.Query.RootTraversal extends Query implements Serializable
-
Serialized Fields
-
value
RootTraversalQuery value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.Query.ToString extends Query implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.Query.TraversalSource extends Query implements Serializable
-
Serialized Fields
-
value
TraversalSourceQuery value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.QueryList extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.RangeArgs extends java.lang.Object implements Serializable
-
Serialized Fields
-
max
IntegerArgument max
-
min
IntegerArgument min
-
scope
Maybe<TraversalScopeArgument> scope
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.RangeArgument extends java.lang.Object implements Serializable
-
Serialized Fields
-
max
GenericLiteralArgument max
-
min
GenericLiteralArgument min
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ReplaceArgs extends java.lang.Object implements Serializable
-
Serialized Fields
-
from
StringNullableArgument from
-
scope
Maybe<TraversalScopeArgument> scope
-
to
StringNullableArgument to
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.RootTraversal extends java.lang.Object implements Serializable
-
Serialized Fields
-
chained
ConsList<ChainedTraversalElement> chained
-
source
TraversalSource source
-
spawnMethod
TraversalSourceSpawnMethod spawnMethod
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.RootTraversalQuery extends java.lang.Object implements Serializable
-
Serialized Fields
-
root
RootTraversal root
-
terminalMethod
Maybe<TraversalTerminalMethod> terminalMethod
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ScopeStringArgument extends java.lang.Object implements Serializable
-
Serialized Fields
-
scope
TraversalScopeArgument scope
-
strings
ConsList<StringNullableArgument> strings
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.SelectArgs extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.SelectArgs.Column extends SelectArgs implements Serializable
-
Serialized Fields
-
value
TraversalColumnArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.SelectArgs.PopStrings extends SelectArgs implements Serializable
-
Serialized Fields
-
value
PopStringsArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.SelectArgs.PopTraversal extends SelectArgs implements Serializable
-
Serialized Fields
-
value
TraversalPopArgumentAndNestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.SelectArgs.Strings extends SelectArgs implements Serializable
-
Serialized Fields
-
value
ConsList<StringArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.SelectArgs.Traversal extends SelectArgs implements Serializable
-
Serialized Fields
-
value
NestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ServiceArguments extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ServiceArguments.Map extends ServiceArguments implements Serializable
-
Serialized Fields
-
value
Maybe<GenericLiteralMapArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ServiceArguments.Traversal extends ServiceArguments implements Serializable
-
Serialized Fields
-
value
Maybe<NestedTraversal> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ServiceCall extends java.lang.Object implements Serializable
-
Serialized Fields
-
arguments
ServiceArguments arguments
-
service
StringArgument service
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ShortestPathConstants extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ShortestPathConstants.Distance extends ShortestPathConstants implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ShortestPathConstants.Edges extends ShortestPathConstants implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ShortestPathConstants.IncludeEdges extends ShortestPathConstants implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ShortestPathConstants.MaxDistance extends ShortestPathConstants implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ShortestPathConstants.Target extends ShortestPathConstants implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.SplitArgs extends java.lang.Object implements Serializable
-
Serialized Fields
-
delimiter
StringNullableArgument delimiter
-
scope
Maybe<TraversalScopeArgument> scope
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.StringArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.StringArgument.Value extends StringArgument implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.StringArgument.Variable extends StringArgument implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.StringArgumentAndGenericLiteralArgument extends java.lang.Object implements Serializable
-
Serialized Fields
-
literal
GenericLiteralArgument literal
-
string
StringArgument string
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.StringArgumentAndOptionalGenericLiteralArgument extends java.lang.Object implements Serializable
-
Serialized Fields
-
literal
Maybe<GenericLiteralArgument> literal
-
string
StringArgument string
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.StringArgumentAndOptionalStringLiteralVarargs extends java.lang.Object implements Serializable
-
Serialized Fields
-
first
StringArgument first
-
rest
ConsList<StringNullableArgument> rest
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.StringArgumentOrNestedTraversal extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.StringArgumentOrNestedTraversal.String_ extends StringArgumentOrNestedTraversal implements Serializable
-
Serialized Fields
-
value
StringArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.StringArgumentOrNestedTraversal.Traversal extends StringArgumentOrNestedTraversal implements Serializable
-
Serialized Fields
-
value
NestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.StringNullableArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.StringNullableArgument.Value extends StringNullableArgument implements Serializable
-
Serialized Fields
-
value
Maybe<java.lang.String> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.StringNullableArgument.Variable extends StringNullableArgument implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.StringNullableArgumentAndGenericLiteralArgument extends java.lang.Object implements Serializable
-
Serialized Fields
-
literal
GenericLiteralArgument literal
-
string
StringNullableArgument string
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.StringNullableArgumentAndTraversalPredicate extends java.lang.Object implements Serializable
-
Serialized Fields
-
predicate
TraversalPredicate predicate
-
string
StringNullableArgument string
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.StringRange extends java.lang.Object implements Serializable
-
Serialized Fields
-
left
java.lang.String left
-
right
java.lang.String right
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.StructureVertex extends java.lang.Object implements Serializable
-
Serialized Fields
-
id
GenericLiteralArgument id
-
label
StringArgument label
-
new_
java.lang.Boolean new_
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.StructureVertexArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.StructureVertexArgument.Value extends StructureVertexArgument implements Serializable
-
Serialized Fields
-
value
StructureVertex value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.StructureVertexArgument.Variable extends StructureVertexArgument implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.SubstringArgs extends java.lang.Object implements Serializable
-
Serialized Fields
-
end
Maybe<IntegerArgument> end
-
scope
Maybe<TraversalScopeArgument> scope
-
start
IntegerArgument start
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TailArgs extends java.lang.Object implements Serializable
-
Serialized Fields
-
integer
Maybe<IntegerArgument> integer
-
scope
Maybe<TraversalScopeArgument> scope
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TerminatedTraversal extends java.lang.Object implements Serializable
-
Serialized Fields
-
root
RootTraversal root
-
terminal
TraversalTerminalMethod terminal
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ToArgs extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ToArgs.Direction extends ToArgs implements Serializable
-
Serialized Fields
-
value
DirectionAndVarargs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ToArgs.String_ extends ToArgs implements Serializable
-
Serialized Fields
-
value
StringArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ToArgs.Traversal extends ToArgs implements Serializable
-
Serialized Fields
-
value
NestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ToArgs.Vertex extends ToArgs implements Serializable
-
Serialized Fields
-
value
StructureVertexArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TransactionPart extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TransactionPart.Begin extends TransactionPart implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TransactionPart.Commit extends TransactionPart implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TransactionPart.Rollback extends TransactionPart implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalBiFunctionArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalBiFunctionArgument.Value extends TraversalBiFunctionArgument implements Serializable
-
Serialized Fields
-
value
TraversalOperator value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalBiFunctionArgument.Variable extends TraversalBiFunctionArgument implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalCardinality extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalCardinality.List extends TraversalCardinality implements Serializable
-
Serialized Fields
-
value
GenericLiteral value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalCardinality.Set extends TraversalCardinality implements Serializable
-
Serialized Fields
-
value
GenericLiteral value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalCardinality.Single extends TraversalCardinality implements Serializable
-
Serialized Fields
-
value
GenericLiteral value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalCardinalityArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalCardinalityArgument.Value extends TraversalCardinalityArgument implements Serializable
-
Serialized Fields
-
value
TraversalCardinality value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalCardinalityArgument.Variable extends TraversalCardinalityArgument implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalCardinalityArgumentAndObjects extends java.lang.Object implements Serializable
-
Serialized Fields
-
cardinality
TraversalCardinalityArgument cardinality
-
objects
ConsList<GenericLiteralArgument> objects
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalColumn extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalColumn.Keys extends TraversalColumn implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalColumn.Values extends TraversalColumn implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalColumnArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalColumnArgument.Value extends TraversalColumnArgument implements Serializable
-
Serialized Fields
-
value
TraversalColumn value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalColumnArgument.Variable extends TraversalColumnArgument implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalComparatorArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalComparatorArgument.Value extends TraversalComparatorArgument implements Serializable
-
Serialized Fields
-
value
TraversalOrder value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalComparatorArgument.Variable extends TraversalComparatorArgument implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalDirection extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalDirection.Both extends TraversalDirection implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalDirection.In extends TraversalDirection implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalDirection.Out extends TraversalDirection implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalDirectionArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalDirectionArgument.Value extends TraversalDirectionArgument implements Serializable
-
Serialized Fields
-
value
TraversalDirection value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalDirectionArgument.Variable extends TraversalDirectionArgument implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalDT extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalDT.Day extends TraversalDT implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalDT.Hour extends TraversalDT implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalDT.Minute extends TraversalDT implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalDT.Second extends TraversalDT implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalDTArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalDTArgument.Value extends TraversalDTArgument implements Serializable
-
Serialized Fields
-
value
TraversalDT value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalDTArgument.Variable extends TraversalDTArgument implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalFunction extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalFunction.Column extends TraversalFunction implements Serializable
-
Serialized Fields
-
value
TraversalColumn value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalFunction.Token extends TraversalFunction implements Serializable
-
Serialized Fields
-
value
TraversalToken value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalFunctionArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalFunctionArgument.Value extends TraversalFunctionArgument implements Serializable
-
Serialized Fields
-
value
TraversalFunction value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalFunctionArgument.Variable extends TraversalFunctionArgument implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalFunctionArgumentOrStringArgumentOrNestedTraversal extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalFunctionArgumentOrStringArgumentOrNestedTraversal.Function extends TraversalFunctionArgumentOrStringArgumentOrNestedTraversal implements Serializable
-
Serialized Fields
-
value
TraversalFunctionArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalFunctionArgumentOrStringArgumentOrNestedTraversal.String_ extends TraversalFunctionArgumentOrStringArgumentOrNestedTraversal implements Serializable
-
Serialized Fields
-
value
StringArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalFunctionArgumentOrStringArgumentOrNestedTraversal.Traversal extends TraversalFunctionArgumentOrStringArgumentOrNestedTraversal implements Serializable
-
Serialized Fields
-
value
NestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMerge extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMerge.InV extends TraversalMerge implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMerge.OnCreate extends TraversalMerge implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMerge.OnMatch extends TraversalMerge implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMerge.OutV extends TraversalMerge implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMergeArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMergeArgument.Value extends TraversalMergeArgument implements Serializable
-
Serialized Fields
-
value
TraversalMerge value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMergeArgument.Variable extends TraversalMergeArgument implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMergeArgumentAndGenericLiteralMapNullableArgument extends java.lang.Object implements Serializable
-
Serialized Fields
-
cardinality
Maybe<TraversalCardinality> cardinality
-
map
GenericLiteralMapNullableArgument map
-
merge
TraversalMergeArgument merge
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMergeArgumentAndNestedTraversal extends java.lang.Object implements Serializable
-
Serialized Fields
-
merge
TraversalMergeArgument merge
-
traversal
NestedTraversal traversal
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.AddE extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
StringArgumentOrNestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.AddV extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<StringArgumentOrNestedTraversal> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Aggregate extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
OptionalTraversalScopeArgumentAndStringArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.All extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
TraversalPredicate value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.And extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ConsList<NestedTraversal> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Any extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
TraversalPredicate value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.As extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
StringArgumentAndOptionalStringLiteralVarargs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.AsDate extends TraversalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.AsString extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<TraversalScopeArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Barrier extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<TraversalSackMethodArgumentOrIntegerArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Both extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ConsList<StringNullableArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.BothE extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ConsList<StringNullableArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.BothV extends TraversalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Branch extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
NestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.By extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ByArgs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Call extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ServiceCall value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Cap extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
StringArgumentAndOptionalStringLiteralVarargs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Choose extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ChooseArgs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Coalesce extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ConsList<NestedTraversal> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Coin extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
FloatArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Combine extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
GenericLiteralArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Concat extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ConcatArgs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Conjoin extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
StringArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.ConnectedComponent extends TraversalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Constant extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
GenericLiteralArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Count extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<TraversalScopeArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.CyclicPath extends TraversalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.DateAdd extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
DateAddArgs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.DateDiff extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
DateDiffArgs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Dedup extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
DedupArgs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Difference extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
GenericLiteralArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Disjunct extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
GenericLiteralArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Drop extends TraversalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.E extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ConsList<GenericLiteralArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Element extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ConsList<StringNullableArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.ElementMap extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ConsList<StringNullableArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Emit extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<PredicateOrTraversal> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Fail extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<StringArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Filter extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
PredicateOrTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.FlatMap extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
NestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Fold extends TraversalMethod implements Serializable
-
Serialized Fields
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Format extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
StringArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.From extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
FromArgs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Group extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<StringArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.GroupCount extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<StringArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Has extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
HasArgs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.HasId extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
GenericLiteralArgumentAndTraversalPredicate value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.HasKey extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
TraversalPredicateOrStringLiteralVarargs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.HasLabel extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
TraversalPredicateOrStringLiteralVarargs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.HasNot extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
StringNullableArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.HasValue extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
TraversalPredicateOrGenericLiteralArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Id extends TraversalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Identity extends TraversalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.In extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ConsList<StringNullableArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Index extends TraversalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.InE extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ConsList<StringNullableArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Inject extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ConsList<GenericLiteralArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Intersect extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
GenericLiteralArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.InV extends TraversalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Is extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
TraversalPredicateOrGenericLiteralArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Key extends TraversalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Label extends TraversalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Length extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<TraversalScopeArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Limit extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
OptionalTraversalScopeArgumentAndIntegerArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Local extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
NestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Loops extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<StringArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.LTrim extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<TraversalScopeArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Map extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
NestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Match extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ConsList<NestedTraversal> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Math_ extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
StringArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Max extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<TraversalScopeArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Mean extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<TraversalScopeArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Merge extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
GenericLiteralArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.MergeE extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<GenericLiteralMapNullableArgumentOrNestedTraversal> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.MergeV extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<GenericLiteralMapNullableArgumentOrNestedTraversal> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Min extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<TraversalScopeArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.None extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
TraversalPredicate value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Not extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
NestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Option extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
OptionArgs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Optional extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
NestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Or extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ConsList<NestedTraversal> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Order extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<TraversalScopeArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.OtherV extends TraversalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Out extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ConsList<StringNullableArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.OutE extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ConsList<StringNullableArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.OutV extends TraversalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.PageRank extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<FloatArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Path extends TraversalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.PeerPressure extends TraversalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Product extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
GenericLiteralArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Profile extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<StringArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Project extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
StringArgumentAndOptionalStringLiteralVarargs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Properties extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ConsList<StringNullableArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Property extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
PropertyArgs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.PropertyMap extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ConsList<StringNullableArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Range extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
RangeArgs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Read extends TraversalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Repeat extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
OptionalStringArgumentAndNestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Replace extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ReplaceArgs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Reverse extends TraversalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.RTrim extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<TraversalScopeArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Sack extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<TraversalBiFunctionArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Sample extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
OptionalTraversalScopeArgumentAndIntegerArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Select extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
SelectArgs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.ShortestPath extends TraversalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.SideEffect extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
NestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.SimplePath extends TraversalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Skip extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
OptionalTraversalScopeArgumentAndIntegerArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Split extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
SplitArgs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Store extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
StringArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Subgraph extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
StringArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Substring extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
SubstringArgs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Sum extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<TraversalScopeArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Tail extends TraversalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Times extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
IntegerArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.To extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ToArgs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.ToE extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
DirectionAndVarargs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.ToLower extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<TraversalScopeArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.ToUpper extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<TraversalScopeArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.ToV extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
TraversalDirectionArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Tree extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<StringArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Trim extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<TraversalScopeArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Unfold extends TraversalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Union extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ConsList<NestedTraversal> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Until extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
PredicateOrTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.V extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ConsList<GenericLiteralArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Value extends TraversalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.ValueMap extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ValueMapArgs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Values extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
ConsList<StringNullableArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Where extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
WhereArgs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.With extends TraversalMethod implements Serializable
-
Serialized Fields
-
value
WithArgs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalMethod.Write extends TraversalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalOperator extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalOperator.AddAll extends TraversalOperator implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalOperator.And extends TraversalOperator implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalOperator.Assign extends TraversalOperator implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalOperator.Div extends TraversalOperator implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalOperator.Max extends TraversalOperator implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalOperator.Min extends TraversalOperator implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalOperator.Minus extends TraversalOperator implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalOperator.Mult extends TraversalOperator implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalOperator.Or extends TraversalOperator implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalOperator.Sum extends TraversalOperator implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalOperator.SumLong extends TraversalOperator implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalOrder extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalOrder.Asc extends TraversalOrder implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalOrder.Decr extends TraversalOrder implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalOrder.Desc extends TraversalOrder implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalOrder.Incr extends TraversalOrder implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalOrder.Shuffle extends TraversalOrder implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalOrderArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalOrderArgument.Value extends TraversalOrderArgument implements Serializable
-
Serialized Fields
-
value
TraversalOrder value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalOrderArgument.Variable extends TraversalOrderArgument implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPick extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPick.Any extends TraversalPick implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPick.None extends TraversalPick implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPop extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPop.All extends TraversalPop implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPop.First extends TraversalPop implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPop.Last extends TraversalPop implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPop.Mixed extends TraversalPop implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPopArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPopArgument.Value extends TraversalPopArgument implements Serializable
-
Serialized Fields
-
value
TraversalPop value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPopArgument.Variable extends TraversalPopArgument implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPopArgumentAndNestedTraversal extends java.lang.Object implements Serializable
-
Serialized Fields
-
pop
TraversalPopArgument pop
-
traversal
NestedTraversal traversal
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicate extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicate.And extends TraversalPredicate implements Serializable
-
Serialized Fields
-
value
TwoTraversalPredicates value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicate.Between extends TraversalPredicate implements Serializable
-
Serialized Fields
-
value
RangeArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicate.Containing extends TraversalPredicate implements Serializable
-
Serialized Fields
-
value
StringArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicate.EndingWith extends TraversalPredicate implements Serializable
-
Serialized Fields
-
value
StringArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicate.Eq extends TraversalPredicate implements Serializable
-
Serialized Fields
-
value
GenericLiteralArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicate.Gt extends TraversalPredicate implements Serializable
-
Serialized Fields
-
value
GenericLiteralArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicate.Gte extends TraversalPredicate implements Serializable
-
Serialized Fields
-
value
GenericLiteralArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicate.Inside extends TraversalPredicate implements Serializable
-
Serialized Fields
-
value
RangeArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicate.Lt extends TraversalPredicate implements Serializable
-
Serialized Fields
-
value
GenericLiteralArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicate.Lte extends TraversalPredicate implements Serializable
-
Serialized Fields
-
value
GenericLiteralArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicate.Negate extends TraversalPredicate implements Serializable
-
Serialized Fields
-
value
TraversalPredicate value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicate.Neq extends TraversalPredicate implements Serializable
-
Serialized Fields
-
value
GenericLiteralArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicate.Not extends TraversalPredicate implements Serializable
-
Serialized Fields
-
value
TraversalPredicate value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicate.NotContaining extends TraversalPredicate implements Serializable
-
Serialized Fields
-
value
StringArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicate.NotEndingWith extends TraversalPredicate implements Serializable
-
Serialized Fields
-
value
StringArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicate.NotRegex extends TraversalPredicate implements Serializable
-
Serialized Fields
-
value
StringArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicate.NotStartingWith extends TraversalPredicate implements Serializable
-
Serialized Fields
-
value
StringArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicate.Or extends TraversalPredicate implements Serializable
-
Serialized Fields
-
value
TwoTraversalPredicates value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicate.Outside extends TraversalPredicate implements Serializable
-
Serialized Fields
-
value
RangeArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicate.Regex extends TraversalPredicate implements Serializable
-
Serialized Fields
-
value
StringArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicate.StartingWith extends TraversalPredicate implements Serializable
-
Serialized Fields
-
value
StringArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicate.Within extends TraversalPredicate implements Serializable
-
Serialized Fields
-
value
Maybe<GenericLiteralArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicate.Without extends TraversalPredicate implements Serializable
-
Serialized Fields
-
value
Maybe<GenericLiteralArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicateAndNestedTraversal extends java.lang.Object implements Serializable
-
Serialized Fields
-
predicate
TraversalPredicate predicate
-
traversal
NestedTraversal traversal
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicateOrGenericLiteralArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicateOrGenericLiteralArgument.Literal extends TraversalPredicateOrGenericLiteralArgument implements Serializable
-
Serialized Fields
-
value
ConsList<GenericLiteralArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicateOrGenericLiteralArgument.Predicate extends TraversalPredicateOrGenericLiteralArgument implements Serializable
-
Serialized Fields
-
value
TraversalPredicate value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicateOrStringLiteralVarargs extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicateOrStringLiteralVarargs.Predicate extends TraversalPredicateOrStringLiteralVarargs implements Serializable
-
Serialized Fields
-
value
TraversalPredicate value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalPredicateOrStringLiteralVarargs.String_ extends TraversalPredicateOrStringLiteralVarargs implements Serializable
-
Serialized Fields
-
value
ConsList<StringNullableArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSackMethodArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSackMethodArgument.Value extends TraversalSackMethodArgument implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSackMethodArgument.Variable extends TraversalSackMethodArgument implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSackMethodArgumentOrIntegerArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSackMethodArgumentOrIntegerArgument.Consumer extends TraversalSackMethodArgumentOrIntegerArgument implements Serializable
-
Serialized Fields
-
value
TraversalSackMethodArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSackMethodArgumentOrIntegerArgument.Int extends TraversalSackMethodArgumentOrIntegerArgument implements Serializable
-
Serialized Fields
-
value
IntegerArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalScope extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalScope.Global extends TraversalScope implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalScope.Local extends TraversalScope implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalScopeArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalScopeArgument.Value extends TraversalScopeArgument implements Serializable
-
Serialized Fields
-
value
TraversalScope value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalScopeArgument.Variable extends TraversalScopeArgument implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSelfMethod extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSelfMethod.Discard extends TraversalSelfMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSource extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<TraversalSourceSelfMethod> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSourceQuery extends java.lang.Object implements Serializable
-
Serialized Fields
-
source
TraversalSource source
-
transactionPart
Maybe<TransactionPart> transactionPart
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSourceSelfMethod extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSourceSelfMethod.With extends TraversalSourceSelfMethod implements Serializable
-
Serialized Fields
-
value
StringArgumentAndOptionalGenericLiteralArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSourceSelfMethod.WithBulk extends TraversalSourceSelfMethod implements Serializable
-
Serialized Fields
-
value
java.lang.Boolean value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSourceSelfMethod.WithoutStrategies extends TraversalSourceSelfMethod implements Serializable
-
Serialized Fields
-
value
ConsList<Identifier> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSourceSelfMethod.WithPath extends TraversalSourceSelfMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSourceSelfMethod.WithSack extends TraversalSourceSelfMethod implements Serializable
-
Serialized Fields
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSourceSelfMethod.WithSideEffect extends TraversalSourceSelfMethod implements Serializable
-
Serialized Fields
-
value
StringArgumentAndGenericLiteralArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSourceSelfMethod.WithStrategies extends TraversalSourceSelfMethod implements Serializable
-
Serialized Fields
-
value
ConsList<TraversalStrategy> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSourceSpawnMethod extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSourceSpawnMethod.AddE extends TraversalSourceSpawnMethod implements Serializable
-
Serialized Fields
-
value
StringArgumentOrNestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSourceSpawnMethod.AddV extends TraversalSourceSpawnMethod implements Serializable
-
Serialized Fields
-
value
Maybe<StringArgumentOrNestedTraversal> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSourceSpawnMethod.Call extends TraversalSourceSpawnMethod implements Serializable
-
Serialized Fields
-
value
Maybe<ServiceCall> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSourceSpawnMethod.E extends TraversalSourceSpawnMethod implements Serializable
-
Serialized Fields
-
value
ConsList<GenericLiteralArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSourceSpawnMethod.Inject extends TraversalSourceSpawnMethod implements Serializable
-
Serialized Fields
-
value
ConsList<GenericLiteralArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSourceSpawnMethod.Io extends TraversalSourceSpawnMethod implements Serializable
-
Serialized Fields
-
value
StringArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSourceSpawnMethod.MergeE extends TraversalSourceSpawnMethod implements Serializable
-
Serialized Fields
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSourceSpawnMethod.MergeV extends TraversalSourceSpawnMethod implements Serializable
-
Serialized Fields
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSourceSpawnMethod.Union extends TraversalSourceSpawnMethod implements Serializable
-
Serialized Fields
-
value
ConsList<NestedTraversal> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalSourceSpawnMethod.V extends TraversalSourceSpawnMethod implements Serializable
-
Serialized Fields
-
value
ConsList<GenericLiteralArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalStrategy extends java.lang.Object implements Serializable
-
Serialized Fields
-
class_
Identifier class_
-
configurations
ConsList<Configuration> configurations
-
new_
java.lang.Boolean new_
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalTerminalMethod extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalTerminalMethod.Explain extends TraversalTerminalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalTerminalMethod.HasNext extends TraversalTerminalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalTerminalMethod.Iterate extends TraversalTerminalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalTerminalMethod.Next extends TraversalTerminalMethod implements Serializable
-
Serialized Fields
-
value
Maybe<IntegerLiteral> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalTerminalMethod.ToBulkSet extends TraversalTerminalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalTerminalMethod.ToList extends TraversalTerminalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalTerminalMethod.ToSet extends TraversalTerminalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalTerminalMethod.TryNext extends TraversalTerminalMethod implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalToken extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalToken.Id extends TraversalToken implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalToken.Key extends TraversalToken implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalToken.Label extends TraversalToken implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalToken.Value extends TraversalToken implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalTokenArgument extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalTokenArgument.Value extends TraversalTokenArgument implements Serializable
-
Serialized Fields
-
value
TraversalToken value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TraversalTokenArgument.Variable extends TraversalTokenArgument implements Serializable
-
Serialized Fields
-
value
Identifier value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.TwoTraversalPredicates extends java.lang.Object implements Serializable
-
Serialized Fields
-
left
TraversalPredicate left
-
right
TraversalPredicate right
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ValueMapArgs extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ValueMapArgs.Boolean_ extends ValueMapArgs implements Serializable
-
Serialized Fields
-
value
ValueMapBooleanArgs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ValueMapArgs.String_ extends ValueMapArgs implements Serializable
-
Serialized Fields
-
value
ConsList<StringNullableArgument> value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.ValueMapBooleanArgs extends java.lang.Object implements Serializable
-
Serialized Fields
-
keys
Maybe<ConsList<StringNullableArgument>> keys
-
value
BooleanArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WhereArgs extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WhereArgs.Predicate extends WhereArgs implements Serializable
-
Serialized Fields
-
value
WhereWithPredicateArgs value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WhereArgs.String_ extends WhereArgs implements Serializable
-
Serialized Fields
-
value
StringArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WhereArgs.Traversal extends WhereArgs implements Serializable
-
Serialized Fields
-
value
NestedTraversal value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WhereWithPredicateArgs extends java.lang.Object implements Serializable
-
Serialized Fields
-
leftArg
Maybe<StringArgument> leftArg
-
predicate
TraversalPredicate predicate
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithArgs extends java.lang.Object implements Serializable
-
Serialized Fields
-
keys
WithArgsKeys keys
-
values
Maybe<WithArgsValues> values
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithArgsKeys extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithArgsKeys.String_ extends WithArgsKeys implements Serializable
-
Serialized Fields
-
value
StringArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithArgsKeys.WithOption extends WithArgsKeys implements Serializable
-
Serialized Fields
-
value
WithOptionKeys value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithArgsValues extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithArgsValues.Io extends WithArgsValues implements Serializable
-
Serialized Fields
-
value
IoOptionsValues value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithArgsValues.Object_ extends WithArgsValues implements Serializable
-
Serialized Fields
-
value
GenericLiteralArgument value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithArgsValues.WithOptions extends WithArgsValues implements Serializable
-
Serialized Fields
-
value
WithOptionsValues value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithOptionKeys extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithOptionKeys.ConnectedComponent extends WithOptionKeys implements Serializable
-
Serialized Fields
-
value
ConnectedComponentConstants value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithOptionKeys.Io extends WithOptionKeys implements Serializable
-
Serialized Fields
-
value
IoOptionsKeys value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithOptionKeys.PageRank extends WithOptionKeys implements Serializable
-
Serialized Fields
-
value
PageRankConstants value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithOptionKeys.PeerPressure extends WithOptionKeys implements Serializable
-
Serialized Fields
-
value
PeerPressureConstants value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithOptionKeys.ShortestPath extends WithOptionKeys implements Serializable
-
Serialized Fields
-
value
ShortestPathConstants value
-
-
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithOptionKeys.WithOptionsIndexer extends WithOptionKeys implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithOptionKeys.WithOptionsTokens extends WithOptionKeys implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithOptionsValues extends java.lang.Object implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithOptionsValues.All extends WithOptionsValues implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithOptionsValues.Ids extends WithOptionsValues implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithOptionsValues.Keys extends WithOptionsValues implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithOptionsValues.Labels extends WithOptionsValues implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithOptionsValues.List extends WithOptionsValues implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithOptionsValues.Map extends WithOptionsValues implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithOptionsValues.None extends WithOptionsValues implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithOptionsValues.Tokens extends WithOptionsValues implements Serializable
-
Class hydra.ext.org.apache.tinkerpop.gremlin.WithOptionsValues.Values extends WithOptionsValues implements Serializable
-
-
Package hydra.ext.org.w3.owl.syntax
-
Class hydra.ext.org.w3.owl.syntax.Annotation extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
property
AnnotationProperty property
-
value
AnnotationValue value
-
-
-
Class hydra.ext.org.w3.owl.syntax.AnnotationAssertion extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
property
AnnotationProperty property
-
subject
AnnotationSubject subject
-
value
AnnotationValue value
-
-
-
Class hydra.ext.org.w3.owl.syntax.AnnotationAxiom extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.owl.syntax.AnnotationAxiom.AnnotationAssertion extends AnnotationAxiom implements Serializable
-
Serialized Fields
-
value
AnnotationAssertion value
-
-
-
Class hydra.ext.org.w3.owl.syntax.AnnotationAxiom.AnnotationPropertyDomain extends AnnotationAxiom implements Serializable
-
Serialized Fields
-
value
AnnotationPropertyDomain value
-
-
-
Class hydra.ext.org.w3.owl.syntax.AnnotationAxiom.AnnotationPropertyRange extends AnnotationAxiom implements Serializable
-
Serialized Fields
-
value
AnnotationPropertyRange value
-
-
-
Class hydra.ext.org.w3.owl.syntax.AnnotationAxiom.SubAnnotationPropertyOf extends AnnotationAxiom implements Serializable
-
Serialized Fields
-
value
SubAnnotationPropertyOf value
-
-
-
Class hydra.ext.org.w3.owl.syntax.AnnotationProperty extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Void value
-
-
-
Class hydra.ext.org.w3.owl.syntax.AnnotationPropertyDomain extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
iri
Iri iri
-
property
AnnotationProperty property
-
-
-
Class hydra.ext.org.w3.owl.syntax.AnnotationPropertyRange extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
iri
Iri iri
-
property
AnnotationProperty property
-
-
-
Class hydra.ext.org.w3.owl.syntax.AnnotationSubject extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.owl.syntax.AnnotationSubject.AnonymousIndividual extends AnnotationSubject implements Serializable
-
Serialized Fields
-
value
AnonymousIndividual value
-
-
-
Class hydra.ext.org.w3.owl.syntax.AnnotationSubject.Iri extends AnnotationSubject implements Serializable
-
Serialized Fields
-
value
Iri value
-
-
-
Class hydra.ext.org.w3.owl.syntax.AnnotationValue extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.owl.syntax.AnnotationValue.AnonymousIndividual extends AnnotationValue implements Serializable
-
Serialized Fields
-
value
AnonymousIndividual value
-
-
-
Class hydra.ext.org.w3.owl.syntax.AnnotationValue.Iri extends AnnotationValue implements Serializable
-
Serialized Fields
-
value
Iri value
-
-
-
Class hydra.ext.org.w3.owl.syntax.AnnotationValue.Literal extends AnnotationValue implements Serializable
-
Serialized Fields
-
value
Literal value
-
-
-
Class hydra.ext.org.w3.owl.syntax.AnonymousIndividual extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Void value
-
-
-
Class hydra.ext.org.w3.owl.syntax.Assertion extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.owl.syntax.Assertion.ClassAssertion extends Assertion implements Serializable
-
Serialized Fields
-
value
ClassAssertion value
-
-
-
Class hydra.ext.org.w3.owl.syntax.Assertion.DataPropertyAssertion extends Assertion implements Serializable
-
Serialized Fields
-
value
DataPropertyAssertion value
-
-
-
Class hydra.ext.org.w3.owl.syntax.Assertion.DifferentIndividuals extends Assertion implements Serializable
-
Serialized Fields
-
value
DifferentIndividuals value
-
-
-
Class hydra.ext.org.w3.owl.syntax.Assertion.NegativeDataPropertyAssertion extends Assertion implements Serializable
-
Serialized Fields
-
value
NegativeDataPropertyAssertion value
-
-
-
Class hydra.ext.org.w3.owl.syntax.Assertion.NegativeObjectPropertyAssertion extends Assertion implements Serializable
-
Serialized Fields
-
value
NegativeObjectPropertyAssertion value
-
-
-
Class hydra.ext.org.w3.owl.syntax.Assertion.ObjectPropertyAssertion extends Assertion implements Serializable
-
Serialized Fields
-
value
ObjectPropertyAssertion value
-
-
-
Class hydra.ext.org.w3.owl.syntax.Assertion.SameIndividual extends Assertion implements Serializable
-
Serialized Fields
-
value
SameIndividual value
-
-
-
Class hydra.ext.org.w3.owl.syntax.AsymmetricObjectProperty extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
property
ObjectPropertyExpression property
-
-
-
Class hydra.ext.org.w3.owl.syntax.Axiom extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.owl.syntax.Axiom.AnnotationAxiom extends Axiom implements Serializable
-
Serialized Fields
-
value
AnnotationAxiom value
-
-
-
Class hydra.ext.org.w3.owl.syntax.Axiom.Assertion extends Axiom implements Serializable
-
Serialized Fields
-
value
Assertion value
-
-
-
Class hydra.ext.org.w3.owl.syntax.Axiom.ClassAxiom extends Axiom implements Serializable
-
Serialized Fields
-
value
ClassAxiom value
-
-
-
Class hydra.ext.org.w3.owl.syntax.Axiom.DataPropertyAxiom extends Axiom implements Serializable
-
Serialized Fields
-
value
DataPropertyAxiom value
-
-
-
Class hydra.ext.org.w3.owl.syntax.Axiom.DatatypeDefinition extends Axiom implements Serializable
-
Serialized Fields
-
value
DatatypeDefinition value
-
-
-
Class hydra.ext.org.w3.owl.syntax.Axiom.Declaration extends Axiom implements Serializable
-
Serialized Fields
-
value
Declaration value
-
-
-
Class hydra.ext.org.w3.owl.syntax.Axiom.HasKey extends Axiom implements Serializable
-
Serialized Fields
-
value
HasKey value
-
-
-
Class hydra.ext.org.w3.owl.syntax.Axiom.ObjectPropertyAxiom extends Axiom implements Serializable
-
Serialized Fields
-
value
ObjectPropertyAxiom value
-
-
-
Class hydra.ext.org.w3.owl.syntax.Class_ extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Void value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ClassAssertion extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
class_
ClassExpression class_
-
individual
Individual individual
-
-
-
Class hydra.ext.org.w3.owl.syntax.ClassAxiom extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.owl.syntax.ClassAxiom.DisjointClasses extends ClassAxiom implements Serializable
-
Serialized Fields
-
value
DisjointClasses value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ClassAxiom.DisjointUnion extends ClassAxiom implements Serializable
-
Serialized Fields
-
value
DisjointUnion value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ClassAxiom.EquivalentClasses extends ClassAxiom implements Serializable
-
Serialized Fields
-
value
EquivalentClasses value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ClassAxiom.SubClassOf extends ClassAxiom implements Serializable
-
Serialized Fields
-
value
SubClassOf value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ClassExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.owl.syntax.ClassExpression.Class_ extends ClassExpression implements Serializable
-
Serialized Fields
-
value
Class_ value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ClassExpression.DataAllValuesFrom extends ClassExpression implements Serializable
-
Serialized Fields
-
value
DataAllValuesFrom value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ClassExpression.DataExactCardinality extends ClassExpression implements Serializable
-
Serialized Fields
-
value
DataExactCardinality value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ClassExpression.DataHasValue extends ClassExpression implements Serializable
-
Serialized Fields
-
value
DataHasValue value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ClassExpression.DataMaxCardinality extends ClassExpression implements Serializable
-
Serialized Fields
-
value
DataMaxCardinality value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ClassExpression.DataMinCardinality extends ClassExpression implements Serializable
-
Serialized Fields
-
value
DataMinCardinality value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ClassExpression.DataSomeValuesFrom extends ClassExpression implements Serializable
-
Serialized Fields
-
value
DataSomeValuesFrom value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ClassExpression.ObjectAllValuesFrom extends ClassExpression implements Serializable
-
Serialized Fields
-
value
ObjectAllValuesFrom value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ClassExpression.ObjectExactCardinality extends ClassExpression implements Serializable
-
Serialized Fields
-
value
ObjectExactCardinality value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ClassExpression.ObjectHasSelf extends ClassExpression implements Serializable
-
Serialized Fields
-
value
ObjectHasSelf value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ClassExpression.ObjectHasValue extends ClassExpression implements Serializable
-
Serialized Fields
-
value
ObjectHasValue value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ClassExpression.ObjectIntersectionOf extends ClassExpression implements Serializable
-
Serialized Fields
-
value
ObjectIntersectionOf value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ClassExpression.ObjectMaxCardinality extends ClassExpression implements Serializable
-
Serialized Fields
-
value
ObjectMaxCardinality value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ClassExpression.ObjectMinCardinality extends ClassExpression implements Serializable
-
Serialized Fields
-
value
ObjectMinCardinality value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ClassExpression.ObjectOneOf extends ClassExpression implements Serializable
-
Serialized Fields
-
value
ObjectOneOf value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ClassExpression.ObjectSomeValuesFrom extends ClassExpression implements Serializable
-
Serialized Fields
-
value
ObjectSomeValuesFrom value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ClassExpression.ObjectUnionOf extends ClassExpression implements Serializable
-
Serialized Fields
-
value
ObjectUnionOf value
-
-
-
Class hydra.ext.org.w3.owl.syntax.DataAllValuesFrom extends java.lang.Object implements Serializable
-
Serialized Fields
-
property
ConsList<DataPropertyExpression> property
-
range
DataRange range
-
-
-
Class hydra.ext.org.w3.owl.syntax.DataComplementOf extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
DataRange value
-
-
-
Class hydra.ext.org.w3.owl.syntax.DataExactCardinality extends java.lang.Object implements Serializable
-
Serialized Fields
-
bound
java.math.BigInteger bound
-
property
DataPropertyExpression property
-
range
ConsList<DataRange> range
-
-
-
Class hydra.ext.org.w3.owl.syntax.DataHasValue extends java.lang.Object implements Serializable
-
Serialized Fields
-
property
DataPropertyExpression property
-
value
Literal value
-
-
-
Class hydra.ext.org.w3.owl.syntax.DataIntersectionOf extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.owl.syntax.DataMaxCardinality extends java.lang.Object implements Serializable
-
Serialized Fields
-
bound
java.math.BigInteger bound
-
property
DataPropertyExpression property
-
range
ConsList<DataRange> range
-
-
-
Class hydra.ext.org.w3.owl.syntax.DataMinCardinality extends java.lang.Object implements Serializable
-
Serialized Fields
-
bound
java.math.BigInteger bound
-
property
DataPropertyExpression property
-
range
ConsList<DataRange> range
-
-
-
Class hydra.ext.org.w3.owl.syntax.DataOneOf extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.owl.syntax.DataProperty extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Void value
-
-
-
Class hydra.ext.org.w3.owl.syntax.DataPropertyAssertion extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
property
DataPropertyExpression property
-
source
Individual source
-
target
Individual target
-
-
-
Class hydra.ext.org.w3.owl.syntax.DataPropertyAxiom extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.owl.syntax.DataPropertyAxiom.DataPropertyAxiom_ extends DataPropertyAxiom implements Serializable
-
Serialized Fields
-
value
DataPropertyAxiom value
-
-
-
Class hydra.ext.org.w3.owl.syntax.DataPropertyAxiom.DataPropertyRange extends DataPropertyAxiom implements Serializable
-
Serialized Fields
-
value
DataPropertyRange value
-
-
-
Class hydra.ext.org.w3.owl.syntax.DataPropertyAxiom.DisjointDataProperties extends DataPropertyAxiom implements Serializable
-
Serialized Fields
-
value
DisjointDataProperties value
-
-
-
Class hydra.ext.org.w3.owl.syntax.DataPropertyAxiom.EquivalentDataProperties extends DataPropertyAxiom implements Serializable
-
Serialized Fields
-
value
EquivalentDataProperties value
-
-
-
Class hydra.ext.org.w3.owl.syntax.DataPropertyAxiom.FunctionalDataProperty extends DataPropertyAxiom implements Serializable
-
Serialized Fields
-
value
FunctionalDataProperty value
-
-
-
Class hydra.ext.org.w3.owl.syntax.DataPropertyAxiom.SubDataPropertyOf extends DataPropertyAxiom implements Serializable
-
Serialized Fields
-
value
SubDataPropertyOf value
-
-
-
Class hydra.ext.org.w3.owl.syntax.DataPropertyDomain extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
domain
ClassExpression domain
-
property
DataPropertyExpression property
-
-
-
Class hydra.ext.org.w3.owl.syntax.DataPropertyExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
DataProperty value
-
-
-
Class hydra.ext.org.w3.owl.syntax.DataPropertyRange extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
property
DataPropertyExpression property
-
range
ClassExpression range
-
-
-
Class hydra.ext.org.w3.owl.syntax.DataRange extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.owl.syntax.DataRange.DataComplementOf extends DataRange implements Serializable
-
Serialized Fields
-
value
DataComplementOf value
-
-
-
Class hydra.ext.org.w3.owl.syntax.DataRange.DataIntersectionOf extends DataRange implements Serializable
-
Serialized Fields
-
value
DataIntersectionOf value
-
-
-
Class hydra.ext.org.w3.owl.syntax.DataRange.DataOneOf extends DataRange implements Serializable
-
Serialized Fields
-
value
DataOneOf value
-
-
-
Class hydra.ext.org.w3.owl.syntax.DataRange.Datatype extends DataRange implements Serializable
-
Serialized Fields
-
value
Datatype value
-
-
-
Class hydra.ext.org.w3.owl.syntax.DataRange.DatatypeRestriction extends DataRange implements Serializable
-
Serialized Fields
-
value
DatatypeRestriction value
-
-
-
Class hydra.ext.org.w3.owl.syntax.DataRange.DataUnionOf extends DataRange implements Serializable
-
Serialized Fields
-
value
DataUnionOf value
-
-
-
Class hydra.ext.org.w3.owl.syntax.DataSomeValuesFrom extends java.lang.Object implements Serializable
-
Serialized Fields
-
property
ConsList<DataPropertyExpression> property
-
range
DataRange range
-
-
-
Class hydra.ext.org.w3.owl.syntax.Datatype extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.owl.syntax.Datatype.Other extends Datatype implements Serializable
-
Serialized Fields
-
value
Iri value
-
-
-
Class hydra.ext.org.w3.owl.syntax.Datatype.XmlSchema extends Datatype implements Serializable
-
Serialized Fields
-
value
Datatype value
-
-
-
Class hydra.ext.org.w3.owl.syntax.DatatypeDefinition extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
datatype
Datatype datatype
-
range
DataRange range
-
-
-
Class hydra.ext.org.w3.owl.syntax.DatatypeRestriction extends java.lang.Object implements Serializable
-
Serialized Fields
-
constraints
ConsList<DatatypeRestriction_Constraint> constraints
-
datatype
Datatype datatype
-
-
-
Class hydra.ext.org.w3.owl.syntax.DatatypeRestriction_ConstrainingFacet extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.owl.syntax.DatatypeRestriction_ConstrainingFacet.Other extends DatatypeRestriction_ConstrainingFacet implements Serializable
-
Serialized Fields
-
value
Iri value
-
-
-
Class hydra.ext.org.w3.owl.syntax.DatatypeRestriction_ConstrainingFacet.XmlSchema extends DatatypeRestriction_ConstrainingFacet implements Serializable
-
Serialized Fields
-
value
ConstrainingFacet value
-
-
-
Class hydra.ext.org.w3.owl.syntax.DatatypeRestriction_Constraint extends java.lang.Object implements Serializable
-
Serialized Fields
-
constrainingFacet
DatatypeRestriction_ConstrainingFacet constrainingFacet
-
restrictionValue
Literal restrictionValue
-
-
-
Class hydra.ext.org.w3.owl.syntax.DataUnionOf extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.owl.syntax.Declaration extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
entity
Entity entity
-
-
-
Class hydra.ext.org.w3.owl.syntax.DifferentIndividuals extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
individuals
ConsList<Individual> individuals
-
-
-
Class hydra.ext.org.w3.owl.syntax.DisjointClasses extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
classes
ConsList<ClassExpression> classes
-
-
-
Class hydra.ext.org.w3.owl.syntax.DisjointDataProperties extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
properties
ConsList<DataPropertyExpression> properties
-
-
-
Class hydra.ext.org.w3.owl.syntax.DisjointObjectProperties extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
properties
ConsList<ObjectPropertyExpression> properties
-
-
-
Class hydra.ext.org.w3.owl.syntax.DisjointUnion extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
class_
Class_ class_
-
classes
ConsList<ClassExpression> classes
-
-
-
Class hydra.ext.org.w3.owl.syntax.Entity extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.owl.syntax.Entity.AnnotationProperty extends Entity implements Serializable
-
Serialized Fields
-
value
AnnotationProperty value
-
-
-
Class hydra.ext.org.w3.owl.syntax.Entity.Class_ extends Entity implements Serializable
-
Serialized Fields
-
value
Class_ value
-
-
-
Class hydra.ext.org.w3.owl.syntax.Entity.DataProperty extends Entity implements Serializable
-
Serialized Fields
-
value
DataProperty value
-
-
-
Class hydra.ext.org.w3.owl.syntax.Entity.Datatype extends Entity implements Serializable
-
Serialized Fields
-
value
Datatype value
-
-
-
Class hydra.ext.org.w3.owl.syntax.Entity.NamedIndividual extends Entity implements Serializable
-
Serialized Fields
-
value
NamedIndividual value
-
-
-
Class hydra.ext.org.w3.owl.syntax.Entity.ObjectProperty extends Entity implements Serializable
-
Serialized Fields
-
value
ObjectProperty value
-
-
-
Class hydra.ext.org.w3.owl.syntax.EquivalentClasses extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
classes
ConsList<ClassExpression> classes
-
-
-
Class hydra.ext.org.w3.owl.syntax.EquivalentDataProperties extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
properties
ConsList<DataPropertyExpression> properties
-
-
-
Class hydra.ext.org.w3.owl.syntax.EquivalentObjectProperties extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
properties
ConsList<ObjectPropertyExpression> properties
-
-
-
Class hydra.ext.org.w3.owl.syntax.FunctionalDataProperty extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
property
DataPropertyExpression property
-
-
-
Class hydra.ext.org.w3.owl.syntax.FunctionalObjectProperty extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
property
ObjectPropertyExpression property
-
-
-
Class hydra.ext.org.w3.owl.syntax.HasKey extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
class_
ClassExpression class_
-
dataProperties
ConsList<DataPropertyExpression> dataProperties
-
objectProperties
ConsList<ObjectPropertyExpression> objectProperties
-
-
-
Class hydra.ext.org.w3.owl.syntax.Individual extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.owl.syntax.Individual.Anonymous extends Individual implements Serializable
-
Serialized Fields
-
value
AnonymousIndividual value
-
-
-
Class hydra.ext.org.w3.owl.syntax.Individual.Named extends Individual implements Serializable
-
Serialized Fields
-
value
NamedIndividual value
-
-
-
Class hydra.ext.org.w3.owl.syntax.InverseFunctionalObjectProperty extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
property
ObjectPropertyExpression property
-
-
-
Class hydra.ext.org.w3.owl.syntax.InverseObjectProperties extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
property1
ObjectPropertyExpression property1
-
property2
ObjectPropertyExpression property2
-
-
-
Class hydra.ext.org.w3.owl.syntax.InverseObjectProperty extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ObjectProperty value
-
-
-
Class hydra.ext.org.w3.owl.syntax.IrreflexiveObjectProperty extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
property
ObjectPropertyExpression property
-
-
-
Class hydra.ext.org.w3.owl.syntax.NamedIndividual extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Void value
-
-
-
Class hydra.ext.org.w3.owl.syntax.NegativeDataPropertyAssertion extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
property
DataPropertyExpression property
-
source
Individual source
-
target
Individual target
-
-
-
Class hydra.ext.org.w3.owl.syntax.NegativeObjectPropertyAssertion extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
property
ObjectPropertyExpression property
-
source
Individual source
-
target
Individual target
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectAllValuesFrom extends java.lang.Object implements Serializable
-
Serialized Fields
-
class_
ClassExpression class_
-
property
ObjectPropertyExpression property
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectComplementOf extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ClassExpression value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectExactCardinality extends java.lang.Object implements Serializable
-
Serialized Fields
-
bound
java.math.BigInteger bound
-
class_
ConsList<ClassExpression> class_
-
property
ObjectPropertyExpression property
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectHasSelf extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ObjectPropertyExpression value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectHasValue extends java.lang.Object implements Serializable
-
Serialized Fields
-
individual
Individual individual
-
property
ObjectPropertyExpression property
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectIntersectionOf extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<ClassExpression> value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectMaxCardinality extends java.lang.Object implements Serializable
-
Serialized Fields
-
bound
java.math.BigInteger bound
-
class_
ConsList<ClassExpression> class_
-
property
ObjectPropertyExpression property
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectMinCardinality extends java.lang.Object implements Serializable
-
Serialized Fields
-
bound
java.math.BigInteger bound
-
class_
ConsList<ClassExpression> class_
-
property
ObjectPropertyExpression property
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectOneOf extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<Individual> value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectProperty extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Void value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectPropertyAssertion extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
property
ObjectPropertyExpression property
-
source
Individual source
-
target
Individual target
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectPropertyAxiom extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.owl.syntax.ObjectPropertyAxiom.AsymmetricObjectProperty extends ObjectPropertyAxiom implements Serializable
-
Serialized Fields
-
value
AsymmetricObjectProperty value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectPropertyAxiom.DisjointObjectProperties extends ObjectPropertyAxiom implements Serializable
-
Serialized Fields
-
value
DisjointObjectProperties value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectPropertyAxiom.EquivalentObjectProperties extends ObjectPropertyAxiom implements Serializable
-
Serialized Fields
-
value
EquivalentObjectProperties value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectPropertyAxiom.FunctionalObjectProperty extends ObjectPropertyAxiom implements Serializable
-
Serialized Fields
-
value
FunctionalObjectProperty value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectPropertyAxiom.InverseFunctionalObjectProperty extends ObjectPropertyAxiom implements Serializable
-
Serialized Fields
-
value
InverseFunctionalObjectProperty value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectPropertyAxiom.InverseObjectProperties extends ObjectPropertyAxiom implements Serializable
-
Serialized Fields
-
value
InverseObjectProperties value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectPropertyAxiom.IrreflexiveObjectProperty extends ObjectPropertyAxiom implements Serializable
-
Serialized Fields
-
value
IrreflexiveObjectProperty value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectPropertyAxiom.ObjectPropertyDomain extends ObjectPropertyAxiom implements Serializable
-
Serialized Fields
-
value
ObjectPropertyDomain value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectPropertyAxiom.ObjectPropertyRange extends ObjectPropertyAxiom implements Serializable
-
Serialized Fields
-
value
ObjectPropertyRange value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectPropertyAxiom.ReflexiveObjectProperty extends ObjectPropertyAxiom implements Serializable
-
Serialized Fields
-
value
ReflexiveObjectProperty value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectPropertyAxiom.SubObjectPropertyOf extends ObjectPropertyAxiom implements Serializable
-
Serialized Fields
-
value
SubObjectPropertyOf value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectPropertyAxiom.SymmetricObjectProperty extends ObjectPropertyAxiom implements Serializable
-
Serialized Fields
-
value
SymmetricObjectProperty value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectPropertyAxiom.TransitiveObjectProperty extends ObjectPropertyAxiom implements Serializable
-
Serialized Fields
-
value
TransitiveObjectProperty value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectPropertyDomain extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
domain
ClassExpression domain
-
property
ObjectPropertyExpression property
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectPropertyExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.owl.syntax.ObjectPropertyExpression.InverseObject extends ObjectPropertyExpression implements Serializable
-
Serialized Fields
-
value
InverseObjectProperty value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectPropertyExpression.Object_ extends ObjectPropertyExpression implements Serializable
-
Serialized Fields
-
value
ObjectProperty value
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectPropertyRange extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
property
ObjectPropertyExpression property
-
range
ClassExpression range
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectSomeValuesFrom extends java.lang.Object implements Serializable
-
Serialized Fields
-
class_
ClassExpression class_
-
property
ObjectPropertyExpression property
-
-
-
Class hydra.ext.org.w3.owl.syntax.ObjectUnionOf extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<ClassExpression> value
-
-
-
Class hydra.ext.org.w3.owl.syntax.Ontology extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.owl.syntax.ReflexiveObjectProperty extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
property
ObjectPropertyExpression property
-
-
-
Class hydra.ext.org.w3.owl.syntax.SameIndividual extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
individuals
ConsList<Individual> individuals
-
-
-
Class hydra.ext.org.w3.owl.syntax.SubAnnotationPropertyOf extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
subProperty
AnnotationProperty subProperty
-
superProperty
AnnotationProperty superProperty
-
-
-
Class hydra.ext.org.w3.owl.syntax.SubClassOf extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
subClass
ClassExpression subClass
-
superClass
ClassExpression superClass
-
-
-
Class hydra.ext.org.w3.owl.syntax.SubDataPropertyOf extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
subProperty
DataPropertyExpression subProperty
-
superProperty
DataPropertyExpression superProperty
-
-
-
Class hydra.ext.org.w3.owl.syntax.SubObjectPropertyOf extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
subProperty
ConsList<ObjectPropertyExpression> subProperty
-
superProperty
ObjectPropertyExpression superProperty
-
-
-
Class hydra.ext.org.w3.owl.syntax.SymmetricObjectProperty extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
property
ObjectPropertyExpression property
-
-
-
Class hydra.ext.org.w3.owl.syntax.TransitiveObjectProperty extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
ConsList<Annotation> annotations
-
property
ObjectPropertyExpression property
-
-
-
-
Package hydra.ext.org.w3.rdf.syntax
-
Class hydra.ext.org.w3.rdf.syntax.BlankNode extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.rdf.syntax.Dataset extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
PersistentSet<Quad> value
-
-
-
Class hydra.ext.org.w3.rdf.syntax.Description extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.rdf.syntax.Graph extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
PersistentSet<Triple> value
-
-
-
Class hydra.ext.org.w3.rdf.syntax.Iri extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.rdf.syntax.IriOrLiteral extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.rdf.syntax.IriOrLiteral.Iri extends IriOrLiteral implements Serializable
-
Serialized Fields
-
value
Iri value
-
-
-
Class hydra.ext.org.w3.rdf.syntax.IriOrLiteral.Literal extends IriOrLiteral implements Serializable
-
Serialized Fields
-
value
Literal value
-
-
-
Class hydra.ext.org.w3.rdf.syntax.LangStrings extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
PersistentMap<Maybe<LanguageTag>,java.lang.String> value
-
-
-
Class hydra.ext.org.w3.rdf.syntax.LanguageTag extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.rdf.syntax.Literal extends java.lang.Object implements Serializable
-
Serialized Fields
-
datatypeIri
Iri datatypeIri
an IRI identifying a datatype that determines how the lexical form maps to a literal value -
languageTag
Maybe<LanguageTag> languageTag
An optional language tag, present if and only if the datatype IRI is http://www.w3.org/1999/02/22-rdf-syntax-ns#langString -
lexicalForm
java.lang.String lexicalForm
a Unicode string, which should be in Normal Form C
-
-
-
Class hydra.ext.org.w3.rdf.syntax.Node extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.rdf.syntax.Node.Bnode extends Node implements Serializable
-
Serialized Fields
-
value
BlankNode value
-
-
-
Class hydra.ext.org.w3.rdf.syntax.Node.Iri extends Node implements Serializable
-
Serialized Fields
-
value
Iri value
-
-
-
Class hydra.ext.org.w3.rdf.syntax.Node.Literal extends Node implements Serializable
-
Serialized Fields
-
value
Literal value
-
-
-
Class hydra.ext.org.w3.rdf.syntax.Property extends java.lang.Object implements Serializable
-
Serialized Fields
-
domain
PersistentSet<RdfsClass> domain
State that any resource that has a given property is an instance of one or more classes -
range
PersistentSet<RdfsClass> range
States that the values of a property are instances of one or more classes -
subPropertyOf
PersistentSet<Property> subPropertyOf
-
-
-
Class hydra.ext.org.w3.rdf.syntax.Quad extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.rdf.syntax.RdfsClass extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Void value
-
-
-
Class hydra.ext.org.w3.rdf.syntax.Resource extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.rdf.syntax.Resource.Bnode extends Resource implements Serializable
-
Serialized Fields
-
value
BlankNode value
-
-
-
Class hydra.ext.org.w3.rdf.syntax.Resource.Iri extends Resource implements Serializable
-
Serialized Fields
-
value
Iri value
-
-
-
Class hydra.ext.org.w3.rdf.syntax.Triple extends java.lang.Object implements Serializable
-
-
Package hydra.ext.org.w3.shacl.model
-
Class hydra.ext.org.w3.shacl.model.Closed extends java.lang.Object implements Serializable
-
Serialized Fields
-
ignoredProperties
Maybe<PersistentSet<Property>> ignoredProperties
-
isClosed
java.lang.Boolean isClosed
-
-
-
Class hydra.ext.org.w3.shacl.model.CommonConstraint extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.shacl.model.CommonConstraint.And extends CommonConstraint implements Serializable
-
Serialized Fields
-
value
PersistentSet<Reference<Shape>> value
-
-
-
Class hydra.ext.org.w3.shacl.model.CommonConstraint.Class_ extends CommonConstraint implements Serializable
-
Serialized Fields
-
value
PersistentSet<RdfsClass> value
-
-
-
Class hydra.ext.org.w3.shacl.model.CommonConstraint.Closed extends CommonConstraint implements Serializable
-
Serialized Fields
-
value
Closed value
-
-
-
Class hydra.ext.org.w3.shacl.model.CommonConstraint.Datatype extends CommonConstraint implements Serializable
-
Serialized Fields
-
value
Iri value
-
-
-
Class hydra.ext.org.w3.shacl.model.CommonConstraint.Disjoint extends CommonConstraint implements Serializable
-
Serialized Fields
-
value
PersistentSet<Property> value
-
-
-
Class hydra.ext.org.w3.shacl.model.CommonConstraint.Equals extends CommonConstraint implements Serializable
-
Serialized Fields
-
value
PersistentSet<Property> value
-
-
-
Class hydra.ext.org.w3.shacl.model.CommonConstraint.HasValue extends CommonConstraint implements Serializable
-
Serialized Fields
-
value
PersistentSet<Node> value
-
-
-
Class hydra.ext.org.w3.shacl.model.CommonConstraint.In extends CommonConstraint implements Serializable
-
Class hydra.ext.org.w3.shacl.model.CommonConstraint.LanguageIn extends CommonConstraint implements Serializable
-
Serialized Fields
-
value
PersistentSet<LanguageTag> value
-
-
-
Class hydra.ext.org.w3.shacl.model.CommonConstraint.MaxExclusive extends CommonConstraint implements Serializable
-
Serialized Fields
-
value
Literal value
-
-
-
Class hydra.ext.org.w3.shacl.model.CommonConstraint.MaxInclusive extends CommonConstraint implements Serializable
-
Serialized Fields
-
value
Literal value
-
-
-
Class hydra.ext.org.w3.shacl.model.CommonConstraint.MaxLength extends CommonConstraint implements Serializable
-
Serialized Fields
-
value
java.math.BigInteger value
-
-
-
Class hydra.ext.org.w3.shacl.model.CommonConstraint.MinExclusive extends CommonConstraint implements Serializable
-
Serialized Fields
-
value
Literal value
-
-
-
Class hydra.ext.org.w3.shacl.model.CommonConstraint.MinInclusive extends CommonConstraint implements Serializable
-
Serialized Fields
-
value
Literal value
-
-
-
Class hydra.ext.org.w3.shacl.model.CommonConstraint.MinLength extends CommonConstraint implements Serializable
-
Serialized Fields
-
value
java.math.BigInteger value
-
-
-
Class hydra.ext.org.w3.shacl.model.CommonConstraint.Node extends CommonConstraint implements Serializable
-
Serialized Fields
-
value
PersistentSet<Reference<NodeShape>> value
-
-
-
Class hydra.ext.org.w3.shacl.model.CommonConstraint.NodeKind extends CommonConstraint implements Serializable
-
Serialized Fields
-
value
NodeKind value
-
-
-
Class hydra.ext.org.w3.shacl.model.CommonConstraint.Not extends CommonConstraint implements Serializable
-
Serialized Fields
-
value
PersistentSet<Reference<Shape>> value
-
-
-
Class hydra.ext.org.w3.shacl.model.CommonConstraint.Or extends CommonConstraint implements Serializable
-
Serialized Fields
-
value
PersistentSet<Reference<Shape>> value
-
-
-
Class hydra.ext.org.w3.shacl.model.CommonConstraint.Pattern extends CommonConstraint implements Serializable
-
Serialized Fields
-
value
Pattern value
-
-
-
Class hydra.ext.org.w3.shacl.model.CommonConstraint.Property extends CommonConstraint implements Serializable
-
Serialized Fields
-
value
PersistentSet<Reference<PropertyShape>> value
-
-
-
Class hydra.ext.org.w3.shacl.model.CommonConstraint.Xone extends CommonConstraint implements Serializable
-
Serialized Fields
-
value
PersistentSet<Reference<Shape>> value
-
-
-
Class hydra.ext.org.w3.shacl.model.CommonProperties extends java.lang.Object implements Serializable
-
Serialized Fields
-
constraints
PersistentSet<CommonConstraint> constraints
Common constraint parameters attached to this shape -
deactivated
Maybe<java.lang.Boolean> deactivated
See https://www.w3.org/TR/shacl/#deactivated -
message
LangStrings message
See https://www.w3.org/TR/shacl/#message -
severity
Severity severity
See https://www.w3.org/TR/shacl/#severity -
targetClass
PersistentSet<RdfsClass> targetClass
See https://www.w3.org/TR/shacl/#targetClass -
targetNode
PersistentSet<IriOrLiteral> targetNode
See https://www.w3.org/TR/shacl/#targetNode -
targetObjectsOf
PersistentSet<Property> targetObjectsOf
See https://www.w3.org/TR/shacl/#targetObjectsOf -
targetSubjectsOf
PersistentSet<Property> targetSubjectsOf
See https://www.w3.org/TR/shacl/#targetSubjectsOf
-
-
-
Class hydra.ext.org.w3.shacl.model.Definition extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.shacl.model.NodeKind extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.shacl.model.NodeKind.BlankNode extends NodeKind implements Serializable
-
Class hydra.ext.org.w3.shacl.model.NodeKind.BlankNodeOrIri extends NodeKind implements Serializable
-
Class hydra.ext.org.w3.shacl.model.NodeKind.BlankNodeOrLiteral extends NodeKind implements Serializable
-
Class hydra.ext.org.w3.shacl.model.NodeKind.Iri extends NodeKind implements Serializable
-
Class hydra.ext.org.w3.shacl.model.NodeKind.IriOrLiteral extends NodeKind implements Serializable
-
Class hydra.ext.org.w3.shacl.model.NodeKind.Literal extends NodeKind implements Serializable
-
Class hydra.ext.org.w3.shacl.model.NodeShape extends java.lang.Object implements Serializable
-
Serialized Fields
-
common
CommonProperties common
-
-
-
Class hydra.ext.org.w3.shacl.model.Pattern extends java.lang.Object implements Serializable
-
Serialized Fields
-
flags
Maybe<java.lang.String> flags
-
regex
java.lang.String regex
-
-
-
Class hydra.ext.org.w3.shacl.model.PropertyShape extends java.lang.Object implements Serializable
-
Serialized Fields
-
common
CommonProperties common
-
constraints
PersistentSet<PropertyShapeConstraint> constraints
Any property shape -specific constraint parameters -
defaultValue
Maybe<Node> defaultValue
See https://www.w3.org/TR/shacl/#defaultValue -
description
LangStrings description
See https://www.w3.org/TR/shacl/#name -
name
LangStrings name
See https://www.w3.org/TR/shacl/#name -
order
Maybe<java.math.BigInteger> order
See https://www.w3.org/TR/shacl/#order -
path
Iri path
-
-
-
Class hydra.ext.org.w3.shacl.model.PropertyShapeConstraint extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.shacl.model.PropertyShapeConstraint.LessThan extends PropertyShapeConstraint implements Serializable
-
Serialized Fields
-
value
PersistentSet<Property> value
-
-
-
Class hydra.ext.org.w3.shacl.model.PropertyShapeConstraint.LessThanOrEquals extends PropertyShapeConstraint implements Serializable
-
Serialized Fields
-
value
PersistentSet<Property> value
-
-
-
Class hydra.ext.org.w3.shacl.model.PropertyShapeConstraint.MaxCount extends PropertyShapeConstraint implements Serializable
-
Serialized Fields
-
value
java.math.BigInteger value
-
-
-
Class hydra.ext.org.w3.shacl.model.PropertyShapeConstraint.MinCount extends PropertyShapeConstraint implements Serializable
-
Serialized Fields
-
value
java.math.BigInteger value
-
-
-
Class hydra.ext.org.w3.shacl.model.PropertyShapeConstraint.QualifiedValueShape extends PropertyShapeConstraint implements Serializable
-
Serialized Fields
-
value
QualifiedValueShape value
-
-
-
Class hydra.ext.org.w3.shacl.model.PropertyShapeConstraint.UniqueLang extends PropertyShapeConstraint implements Serializable
-
Serialized Fields
-
value
java.lang.Boolean value
-
-
-
Class hydra.ext.org.w3.shacl.model.QualifiedValueShape extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.shacl.model.Reference extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.shacl.model.Reference.Anonymous extends Reference<A> implements Serializable
-
Serialized Fields
-
value
A value
-
-
-
Class hydra.ext.org.w3.shacl.model.Reference.Definition extends Reference<A> implements Serializable
-
Serialized Fields
-
value
Definition<A> value
-
-
-
Class hydra.ext.org.w3.shacl.model.Reference.Named extends Reference<A> implements Serializable
-
Serialized Fields
-
value
Iri value
-
-
-
Class hydra.ext.org.w3.shacl.model.Severity extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.shacl.model.Severity.Info extends Severity implements Serializable
-
Class hydra.ext.org.w3.shacl.model.Severity.Violation extends Severity implements Serializable
-
Class hydra.ext.org.w3.shacl.model.Severity.Warning extends Severity implements Serializable
-
Class hydra.ext.org.w3.shacl.model.Shape extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.shacl.model.Shape.Node extends Shape implements Serializable
-
Serialized Fields
-
value
NodeShape value
-
-
-
Class hydra.ext.org.w3.shacl.model.Shape.Property extends Shape implements Serializable
-
Serialized Fields
-
value
PropertyShape value
-
-
-
Class hydra.ext.org.w3.shacl.model.ShapesGraph extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
PersistentSet<Definition<Shape>> value
-
-
-
-
Package hydra.ext.org.w3.xml.schema
-
Class hydra.ext.org.w3.xml.schema.AnySimpleType extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.AnyType extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.AnyURI extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.Base64Binary extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.Boolean_ extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Boolean value
-
-
-
Class hydra.ext.org.w3.xml.schema.Byte_ extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Byte value
-
-
-
Class hydra.ext.org.w3.xml.schema.ConstrainingFacet extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Void value
-
-
-
Class hydra.ext.org.w3.xml.schema.Datatype extends java.lang.Object implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.AnySimpleType extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.AnyType extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.AnyURI extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.Base64Binary extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.Boolean_ extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.Byte_ extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.Date extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.DateTime extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.Decimal extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.Double_ extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.Duration extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.ENTITIES extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.ENTITY extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.Float_ extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.GDay extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.GMonth extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.GMonthDay extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.GYear extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.GYearMonth extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.HexBinary extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.ID extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.IDREF extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.IDREFS extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.Int extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.Integer_ extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.Language extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.Long_ extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.Name extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.NegativeInteger extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.NMTOKEN extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.NonNegativeInteger extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.NonPositiveInteger extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.NormalizedString extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.NOTATION extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.PositiveInteger extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.QName extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.Short_ extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.String_ extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.Time extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.Token extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.UnsignedByte extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.UnsignedInt extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.UnsignedLong extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Datatype.UnsignedShort extends Datatype implements Serializable
-
Class hydra.ext.org.w3.xml.schema.Date extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.DateTime extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.Decimal extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.Double_ extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Double value
-
-
-
Class hydra.ext.org.w3.xml.schema.Duration extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.ENTITIES extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.ENTITY extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.Float_ extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Float value
-
-
-
Class hydra.ext.org.w3.xml.schema.GDay extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.GMonth extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.GMonthDay extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.GYear extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.GYearMonth extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.HexBinary extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.ID extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.IDREF extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.IDREFS extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.Int extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Integer value
-
-
-
Class hydra.ext.org.w3.xml.schema.Integer_ extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.math.BigInteger value
-
-
-
Class hydra.ext.org.w3.xml.schema.Language extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.Long_ extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Long value
-
-
-
Class hydra.ext.org.w3.xml.schema.Name extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.NegativeInteger extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.math.BigInteger value
-
-
-
Class hydra.ext.org.w3.xml.schema.NMTOKEN extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.NonNegativeInteger extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.math.BigInteger value
-
-
-
Class hydra.ext.org.w3.xml.schema.NonPositiveInteger extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.math.BigInteger value
-
-
-
Class hydra.ext.org.w3.xml.schema.NormalizedString extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.NOTATION extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.PositiveInteger extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.math.BigInteger value
-
-
-
Class hydra.ext.org.w3.xml.schema.QName extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.Short_ extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Short value
-
-
-
Class hydra.ext.org.w3.xml.schema.String_ extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.Time extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.Token extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.org.w3.xml.schema.UnsignedByte extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Short value
-
-
-
Class hydra.ext.org.w3.xml.schema.UnsignedInt extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Long value
-
-
-
Class hydra.ext.org.w3.xml.schema.UnsignedLong extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.math.BigInteger value
-
-
-
Class hydra.ext.org.w3.xml.schema.UnsignedShort extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Character value
-
-
-
-
Package hydra.ext.org.yaml.model
-
Class hydra.ext.org.yaml.model.Node extends java.lang.Object implements Serializable
-
Class hydra.ext.org.yaml.model.Node.Mapping extends Node implements Serializable
-
Serialized Fields
-
value
PersistentMap<Node,Node> value
-
-
-
Class hydra.ext.org.yaml.model.Node.Scalar extends Node implements Serializable
-
Serialized Fields
-
value
Scalar value
-
-
-
Class hydra.ext.org.yaml.model.Node.Sequence extends Node implements Serializable
-
Class hydra.ext.org.yaml.model.Scalar extends java.lang.Object implements Serializable
-
Class hydra.ext.org.yaml.model.Scalar.Bool extends Scalar implements Serializable
-
Serialized Fields
-
value
java.lang.Boolean value
-
-
-
Class hydra.ext.org.yaml.model.Scalar.Float_ extends Scalar implements Serializable
-
Serialized Fields
-
value
java.math.BigDecimal value
-
-
-
Class hydra.ext.org.yaml.model.Scalar.Int extends Scalar implements Serializable
-
Serialized Fields
-
value
java.math.BigInteger value
-
-
-
Class hydra.ext.org.yaml.model.Scalar.Null extends Scalar implements Serializable
-
Class hydra.ext.org.yaml.model.Scalar.Str extends Scalar implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
-
Package hydra.ext.python.environment
-
Class hydra.ext.python.environment.PyGraph extends java.lang.Object implements Serializable
-
Serialized Fields
-
graph
Graph graph
The Hydra graph being processed -
metadata
PythonModuleMetadata metadata
Accumulated module metadata
-
-
-
Class hydra.ext.python.environment.PythonEnvironment extends java.lang.Object implements Serializable
-
Serialized Fields
-
boundTypeVariables
Pair<ConsList<Name>,PersistentMap<Name,Name>> boundTypeVariables
Type variables in scope, with their Python names -
graph
Graph graph
Graph context for type inference -
inlineVariables
PersistentSet<Name> inlineVariables
Variables that are inline let bindings (walrus operators) -
namespaces
Namespaces<DottedName> namespaces
Namespace mapping for imports -
nullaryBindings
PersistentSet<Name> nullaryBindings
Set of nullary bindings (need call syntax) -
skipCasts
java.lang.Boolean skipCasts
When True, skip generating cast() calls for reduced memory usage -
version
PythonVersion version
Target Python version
-
-
-
Class hydra.ext.python.environment.PythonModuleMetadata extends java.lang.Object implements Serializable
-
Serialized Fields
-
namespaces
Namespaces<DottedName> namespaces
Namespace mapping for imports -
typeVariables
PersistentSet<Name> typeVariables
Type variables used in the module -
usesAnnotated
java.lang.Boolean usesAnnotated
-
usesCallable
java.lang.Boolean usesCallable
-
usesCast
java.lang.Boolean usesCast
-
usesDataclass
java.lang.Boolean usesDataclass
-
usesDecimal
java.lang.Boolean usesDecimal
-
usesEither
java.lang.Boolean usesEither
-
usesEnum
java.lang.Boolean usesEnum
-
usesFrozenDict
java.lang.Boolean usesFrozenDict
-
usesFrozenList
java.lang.Boolean usesFrozenList
-
usesGeneric
java.lang.Boolean usesGeneric
-
usesJust
java.lang.Boolean usesJust
-
usesLeft
java.lang.Boolean usesLeft
-
usesLruCache
java.lang.Boolean usesLruCache
-
usesMaybe
java.lang.Boolean usesMaybe
-
usesName
java.lang.Boolean usesName
-
usesNode
java.lang.Boolean usesNode
-
usesNothing
java.lang.Boolean usesNothing
-
usesRight
java.lang.Boolean usesRight
-
usesTypeAlias
java.lang.Boolean usesTypeAlias
-
usesTypeVar
java.lang.Boolean usesTypeVar
-
-
-
Class hydra.ext.python.environment.PythonVersion extends java.lang.Object implements Serializable
-
Class hydra.ext.python.environment.PythonVersion.Python310 extends PythonVersion implements Serializable
-
Class hydra.ext.python.environment.PythonVersion.Python312 extends PythonVersion implements Serializable
-
-
Package hydra.ext.python.syntax
-
Class hydra.ext.python.syntax.AnnotatedRhs extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.AnnotatedRhs.Star extends AnnotatedRhs implements Serializable
-
Serialized Fields
-
value
ConsList<StarExpression> value
-
-
-
Class hydra.ext.python.syntax.AnnotatedRhs.Yield extends AnnotatedRhs implements Serializable
-
Serialized Fields
-
value
YieldExpression value
-
-
-
Class hydra.ext.python.syntax.AnnotatedStatement extends java.lang.Object implements Serializable
-
Serialized Fields
-
comment
java.lang.String comment
-
statement
Statement statement
-
-
-
Class hydra.ext.python.syntax.Annotation extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.python.syntax.Args extends java.lang.Object implements Serializable
-
Serialized Fields
-
kwargOrDoubleStarred
ConsList<KwargOrDoubleStarred> kwargOrDoubleStarred
-
kwargOrStarred
ConsList<KwargOrStarred> kwargOrStarred
-
positional
ConsList<PosArg> positional
-
-
-
Class hydra.ext.python.syntax.AsPattern extends java.lang.Object implements Serializable
-
Serialized Fields
-
as
PatternCaptureTarget as
-
pattern
OrPattern pattern
-
-
-
Class hydra.ext.python.syntax.AssertStatement extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression1
Expression expression1
-
expression2
Maybe<Expression> expression2
-
-
-
Class hydra.ext.python.syntax.Assignment extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.Assignment.Aug extends Assignment implements Serializable
-
Serialized Fields
-
value
AugAssignment value
-
-
-
Class hydra.ext.python.syntax.Assignment.Typed extends Assignment implements Serializable
-
Serialized Fields
-
value
TypedAssignment value
-
-
-
Class hydra.ext.python.syntax.Assignment.Untyped extends Assignment implements Serializable
-
Serialized Fields
-
value
UntypedAssignment value
-
-
-
Class hydra.ext.python.syntax.AssignmentExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
Expression expression
-
name
Name name
-
-
-
Class hydra.ext.python.syntax.Atom extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.Atom.Dict extends Atom implements Serializable
-
Serialized Fields
-
value
Dict value
-
-
-
Class hydra.ext.python.syntax.Atom.Dictcomp extends Atom implements Serializable
-
Serialized Fields
-
value
Dictcomp value
-
-
-
Class hydra.ext.python.syntax.Atom.Ellipsis extends Atom implements Serializable
-
Class hydra.ext.python.syntax.Atom.False extends Atom implements Serializable
-
Class hydra.ext.python.syntax.Atom.Genexp extends Atom implements Serializable
-
Serialized Fields
-
value
Genexp value
-
-
-
Class hydra.ext.python.syntax.Atom.Group extends Atom implements Serializable
-
Serialized Fields
-
value
Group value
-
-
-
Class hydra.ext.python.syntax.Atom.List extends Atom implements Serializable
-
Serialized Fields
-
value
List value
-
-
-
Class hydra.ext.python.syntax.Atom.Listcomp extends Atom implements Serializable
-
Serialized Fields
-
value
Listcomp value
-
-
-
Class hydra.ext.python.syntax.Atom.Name extends Atom implements Serializable
-
Serialized Fields
-
value
Name value
-
-
-
Class hydra.ext.python.syntax.Atom.None extends Atom implements Serializable
-
Class hydra.ext.python.syntax.Atom.Number_ extends Atom implements Serializable
-
Serialized Fields
-
value
Number_ value
-
-
-
Class hydra.ext.python.syntax.Atom.Set extends Atom implements Serializable
-
Serialized Fields
-
value
Set value
-
-
-
Class hydra.ext.python.syntax.Atom.Setcomp extends Atom implements Serializable
-
Serialized Fields
-
value
Setcomp value
-
-
-
Class hydra.ext.python.syntax.Atom.String_ extends Atom implements Serializable
-
Serialized Fields
-
value
String_ value
-
-
-
Class hydra.ext.python.syntax.Atom.True extends Atom implements Serializable
-
Class hydra.ext.python.syntax.Atom.Tuple extends Atom implements Serializable
-
Serialized Fields
-
value
Tuple value
-
-
-
Class hydra.ext.python.syntax.Attribute extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.AugAssign extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.AugAssign.AmpersandEqual extends AugAssign implements Serializable
-
Class hydra.ext.python.syntax.AugAssign.AtEqual extends AugAssign implements Serializable
-
Class hydra.ext.python.syntax.AugAssign.BarEqual extends AugAssign implements Serializable
-
Class hydra.ext.python.syntax.AugAssign.CaretEqual extends AugAssign implements Serializable
-
Class hydra.ext.python.syntax.AugAssign.DoubleSlashEqual extends AugAssign implements Serializable
-
Class hydra.ext.python.syntax.AugAssign.LeftShiftEqual extends AugAssign implements Serializable
-
Class hydra.ext.python.syntax.AugAssign.MinusEqual extends AugAssign implements Serializable
-
Class hydra.ext.python.syntax.AugAssign.PercentEqual extends AugAssign implements Serializable
-
Class hydra.ext.python.syntax.AugAssign.PlusEqual extends AugAssign implements Serializable
-
Class hydra.ext.python.syntax.AugAssign.RightShiftEqual extends AugAssign implements Serializable
-
Class hydra.ext.python.syntax.AugAssign.SlashEqual extends AugAssign implements Serializable
-
Class hydra.ext.python.syntax.AugAssign.StarStarEqual extends AugAssign implements Serializable
-
Class hydra.ext.python.syntax.AugAssign.TimesEqual extends AugAssign implements Serializable
-
Class hydra.ext.python.syntax.AugAssignment extends java.lang.Object implements Serializable
-
Serialized Fields
-
augassign
AugAssign augassign
-
lhs
SingleTarget lhs
-
rhs
AnnotatedRhs rhs
-
-
-
Class hydra.ext.python.syntax.AwaitPrimary extends java.lang.Object implements Serializable
-
Serialized Fields
-
await
java.lang.Boolean await
-
primary
Primary primary
-
-
-
Class hydra.ext.python.syntax.BitwiseAnd extends java.lang.Object implements Serializable
-
Serialized Fields
-
lhs
Maybe<BitwiseAnd> lhs
-
rhs
ShiftExpression rhs
-
-
-
Class hydra.ext.python.syntax.BitwiseOr extends java.lang.Object implements Serializable
-
Serialized Fields
-
lhs
Maybe<BitwiseOr> lhs
-
rhs
BitwiseXor rhs
-
-
-
Class hydra.ext.python.syntax.BitwiseXor extends java.lang.Object implements Serializable
-
Serialized Fields
-
lhs
Maybe<BitwiseXor> lhs
-
rhs
BitwiseAnd rhs
-
-
-
Class hydra.ext.python.syntax.Block extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.Block.Indented extends Block implements Serializable
-
Class hydra.ext.python.syntax.Block.Simple extends Block implements Serializable
-
Serialized Fields
-
value
ConsList<SimpleStatement> value
-
-
-
Class hydra.ext.python.syntax.CapturePattern extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
PatternCaptureTarget value
-
-
-
Class hydra.ext.python.syntax.CaseBlock extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.ClassDefinition extends java.lang.Object implements Serializable
-
Serialized Fields
-
arguments
Maybe<Args> arguments
-
body
Block body
-
decorators
Maybe<Decorators> decorators
-
name
Name name
-
typeParams
ConsList<TypeParameter> typeParams
-
-
-
Class hydra.ext.python.syntax.ClassPattern extends java.lang.Object implements Serializable
-
Serialized Fields
-
keywordPatterns
Maybe<KeywordPatterns> keywordPatterns
-
nameOrAttribute
NameOrAttribute nameOrAttribute
-
positionalPatterns
Maybe<PositionalPatterns> positionalPatterns
-
-
-
Class hydra.ext.python.syntax.ClosedPattern extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.ClosedPattern.Capture extends ClosedPattern implements Serializable
-
Serialized Fields
-
value
CapturePattern value
-
-
-
Class hydra.ext.python.syntax.ClosedPattern.Class_ extends ClosedPattern implements Serializable
-
Serialized Fields
-
value
ClassPattern value
-
-
-
Class hydra.ext.python.syntax.ClosedPattern.Group extends ClosedPattern implements Serializable
-
Serialized Fields
-
value
GroupPattern value
-
-
-
Class hydra.ext.python.syntax.ClosedPattern.Literal extends ClosedPattern implements Serializable
-
Serialized Fields
-
value
LiteralExpression value
-
-
-
Class hydra.ext.python.syntax.ClosedPattern.Mapping extends ClosedPattern implements Serializable
-
Serialized Fields
-
value
MappingPattern value
-
-
-
Class hydra.ext.python.syntax.ClosedPattern.Sequence extends ClosedPattern implements Serializable
-
Serialized Fields
-
value
SequencePattern value
-
-
-
Class hydra.ext.python.syntax.ClosedPattern.Value extends ClosedPattern implements Serializable
-
Serialized Fields
-
value
ValuePattern value
-
-
-
Class hydra.ext.python.syntax.ClosedPattern.Wildcard extends ClosedPattern implements Serializable
-
Class hydra.ext.python.syntax.CommaStarEtc extends java.lang.Object implements Serializable
-
Serialized Fields
-
keywords
Maybe<Keywords> keywords
-
paramMaybeDefault
ConsList<ParamMaybeDefault> paramMaybeDefault
-
-
-
Class hydra.ext.python.syntax.CompareOp extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.CompareOp.Eq extends CompareOp implements Serializable
-
Class hydra.ext.python.syntax.CompareOp.Gt extends CompareOp implements Serializable
-
Class hydra.ext.python.syntax.CompareOp.Gte extends CompareOp implements Serializable
-
Class hydra.ext.python.syntax.CompareOp.In extends CompareOp implements Serializable
-
Class hydra.ext.python.syntax.CompareOp.Is extends CompareOp implements Serializable
-
Class hydra.ext.python.syntax.CompareOp.Isnot extends CompareOp implements Serializable
-
Class hydra.ext.python.syntax.CompareOp.Lt extends CompareOp implements Serializable
-
Class hydra.ext.python.syntax.CompareOp.Lte extends CompareOp implements Serializable
-
Class hydra.ext.python.syntax.CompareOp.Noteq extends CompareOp implements Serializable
-
Class hydra.ext.python.syntax.CompareOp.Notin extends CompareOp implements Serializable
-
Class hydra.ext.python.syntax.CompareOpBitwiseOrPair extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.Comparison extends java.lang.Object implements Serializable
-
Serialized Fields
-
lhs
BitwiseOr lhs
-
rhs
ConsList<CompareOpBitwiseOrPair> rhs
-
-
-
Class hydra.ext.python.syntax.ComplexNumber extends java.lang.Object implements Serializable
-
Serialized Fields
-
imaginary
ImaginaryNumber imaginary
-
plusOrMinus
PlusOrMinus plusOrMinus
-
real
SignedRealNumber real
-
-
-
Class hydra.ext.python.syntax.CompoundStatement extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.CompoundStatement.ClassDef extends CompoundStatement implements Serializable
-
Serialized Fields
-
value
ClassDefinition value
-
-
-
Class hydra.ext.python.syntax.CompoundStatement.For extends CompoundStatement implements Serializable
-
Serialized Fields
-
value
ForStatement value
-
-
-
Class hydra.ext.python.syntax.CompoundStatement.Function extends CompoundStatement implements Serializable
-
Serialized Fields
-
value
FunctionDefinition value
-
-
-
Class hydra.ext.python.syntax.CompoundStatement.If extends CompoundStatement implements Serializable
-
Serialized Fields
-
value
IfStatement value
-
-
-
Class hydra.ext.python.syntax.CompoundStatement.Match extends CompoundStatement implements Serializable
-
Serialized Fields
-
value
MatchStatement value
-
-
-
Class hydra.ext.python.syntax.CompoundStatement.Try extends CompoundStatement implements Serializable
-
Serialized Fields
-
value
TryStatement value
-
-
-
Class hydra.ext.python.syntax.CompoundStatement.While extends CompoundStatement implements Serializable
-
Serialized Fields
-
value
WhileStatement value
-
-
-
Class hydra.ext.python.syntax.CompoundStatement.With extends CompoundStatement implements Serializable
-
Serialized Fields
-
value
WithStatement value
-
-
-
Class hydra.ext.python.syntax.Conditional extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
Disjunction body
-
else_
Expression else_
-
if_
Disjunction if_
-
-
-
Class hydra.ext.python.syntax.Conjunction extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.Decorators extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<NamedExpression> value
-
-
-
Class hydra.ext.python.syntax.Default extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.python.syntax.DelStatement extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
DelTargets value
-
-
-
Class hydra.ext.python.syntax.DelTarget extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.DelTarget.DelTAtom extends DelTarget implements Serializable
-
Serialized Fields
-
value
DelTAtom value
-
-
-
Class hydra.ext.python.syntax.DelTarget.PrimaryAndName extends DelTarget implements Serializable
-
Serialized Fields
-
value
TPrimaryAndName value
-
-
-
Class hydra.ext.python.syntax.DelTarget.PrimaryAndSlices extends DelTarget implements Serializable
-
Serialized Fields
-
value
TPrimaryAndSlices value
-
-
-
Class hydra.ext.python.syntax.DelTargets extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.DelTAtom extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.DelTAtom.Name extends DelTAtom implements Serializable
-
Serialized Fields
-
value
Name value
-
-
-
Class hydra.ext.python.syntax.DelTAtom.Target extends DelTAtom implements Serializable
-
Serialized Fields
-
value
DelTarget value
-
-
-
Class hydra.ext.python.syntax.DelTAtom.Targets extends DelTAtom implements Serializable
-
Serialized Fields
-
value
DelTargets value
-
-
-
Class hydra.ext.python.syntax.Dict extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<DoubleStarredKvpair> value
-
-
-
Class hydra.ext.python.syntax.Dictcomp extends java.lang.Object implements Serializable
-
Serialized Fields
-
forIfClauses
ForIfClauses forIfClauses
-
kvpair
Kvpair kvpair
-
-
-
Class hydra.ext.python.syntax.Disjunction extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<Conjunction> value
-
-
-
Class hydra.ext.python.syntax.DottedAsName extends java.lang.Object implements Serializable
-
Serialized Fields
-
as
Maybe<Name> as
-
name
DottedName name
-
-
-
Class hydra.ext.python.syntax.DottedName extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.DoubleStarPattern extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
PatternCaptureTarget value
-
-
-
Class hydra.ext.python.syntax.DoubleStarredKvpair extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.DoubleStarredKvpair.Pair extends DoubleStarredKvpair implements Serializable
-
Serialized Fields
-
value
Kvpair value
-
-
-
Class hydra.ext.python.syntax.DoubleStarredKvpair.Starred extends DoubleStarredKvpair implements Serializable
-
Serialized Fields
-
value
BitwiseOr value
-
-
-
Class hydra.ext.python.syntax.DoubleStarTypeParameter extends java.lang.Object implements Serializable
-
Serialized Fields
-
default_
Maybe<Expression> default_
-
name
Name name
-
-
-
Class hydra.ext.python.syntax.Eval extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<Expression> value
-
-
-
Class hydra.ext.python.syntax.ExceptBlock extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
Block body
-
expression
Maybe<ExceptExpression> expression
-
-
-
Class hydra.ext.python.syntax.ExceptExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
as
Maybe<Name> as
-
expression
Expression expression
-
-
-
Class hydra.ext.python.syntax.ExceptStarBlock extends java.lang.Object implements Serializable
-
Serialized Fields
-
as
Maybe<Name> as
-
body
Block body
-
expression
Expression expression
-
-
-
Class hydra.ext.python.syntax.Expression extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.Expression.Conditional extends Expression implements Serializable
-
Serialized Fields
-
value
Conditional value
-
-
-
Class hydra.ext.python.syntax.Expression.Lambda extends Expression implements Serializable
-
Serialized Fields
-
value
Lambda value
-
-
-
Class hydra.ext.python.syntax.Expression.Simple extends Expression implements Serializable
-
Serialized Fields
-
value
Disjunction value
-
-
-
Class hydra.ext.python.syntax.Factor extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.Factor.Complement extends Factor implements Serializable
-
Serialized Fields
-
value
Factor value
-
-
-
Class hydra.ext.python.syntax.Factor.Negative extends Factor implements Serializable
-
Serialized Fields
-
value
Factor value
-
-
-
Class hydra.ext.python.syntax.Factor.Positive extends Factor implements Serializable
-
Serialized Fields
-
value
Factor value
-
-
-
Class hydra.ext.python.syntax.Factor.Simple extends Factor implements Serializable
-
Serialized Fields
-
value
Power value
-
-
-
Class hydra.ext.python.syntax.File extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.ForIfClause extends java.lang.Object implements Serializable
-
Serialized Fields
-
async
java.lang.Boolean async
-
ifs
ConsList<Disjunction> ifs
-
in
Disjunction in
-
targets
ConsList<StarTarget> targets
-
-
-
Class hydra.ext.python.syntax.ForIfClauses extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<ForIfClause> value
-
-
-
Class hydra.ext.python.syntax.ForStatement extends java.lang.Object implements Serializable
-
Serialized Fields
-
async
java.lang.Boolean async
-
body
Block body
-
else_
Maybe<Block> else_
-
expressions
ConsList<StarExpression> expressions
-
targets
ConsList<StarTarget> targets
-
typeComment
Maybe<TypeComment> typeComment
-
-
-
Class hydra.ext.python.syntax.FunctionDefinition extends java.lang.Object implements Serializable
-
Serialized Fields
-
decorators
Maybe<Decorators> decorators
-
raw
FunctionDefRaw raw
-
-
-
Class hydra.ext.python.syntax.FunctionDefRaw extends java.lang.Object implements Serializable
-
Serialized Fields
-
async
java.lang.Boolean async
-
block
Block block
-
funcTypeComment
Maybe<FuncTypeComment> funcTypeComment
-
name
Name name
-
params
Maybe<Parameters> params
-
returnType
Maybe<Expression> returnType
-
typeParams
ConsList<TypeParameter> typeParams
-
-
-
Class hydra.ext.python.syntax.FuncType extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
Expression body
-
type
ConsList<TypeExpression> type
-
-
-
Class hydra.ext.python.syntax.FuncTypeComment extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
TypeComment value
-
-
-
Class hydra.ext.python.syntax.Genexp extends java.lang.Object implements Serializable
-
Serialized Fields
-
head
GenexpHead head
-
tail
ForIfClauses tail
-
-
-
Class hydra.ext.python.syntax.GenexpHead extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.GenexpHead.Assignment extends GenexpHead implements Serializable
-
Serialized Fields
-
value
AssignmentExpression value
-
-
-
Class hydra.ext.python.syntax.GenexpHead.Expression extends GenexpHead implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.python.syntax.Group extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.Group.Expression extends Group implements Serializable
-
Serialized Fields
-
value
NamedExpression value
-
-
-
Class hydra.ext.python.syntax.Group.Yield extends Group implements Serializable
-
Serialized Fields
-
value
YieldExpression value
-
-
-
Class hydra.ext.python.syntax.GroupPattern extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Pattern value
-
-
-
Class hydra.ext.python.syntax.Guard extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
NamedExpression value
-
-
-
Class hydra.ext.python.syntax.IfStatement extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
Block body
-
condition
NamedExpression condition
-
continuation
Maybe<IfTail> continuation
-
-
-
Class hydra.ext.python.syntax.IfTail extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.IfTail.Elif extends IfTail implements Serializable
-
Serialized Fields
-
value
IfStatement value
-
-
-
Class hydra.ext.python.syntax.IfTail.Else extends IfTail implements Serializable
-
Serialized Fields
-
value
Block value
-
-
-
Class hydra.ext.python.syntax.ImaginaryNumber extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Number_ value
-
-
-
Class hydra.ext.python.syntax.ImportFrom extends java.lang.Object implements Serializable
-
Serialized Fields
-
dottedName
Maybe<DottedName> dottedName
-
prefixes
ConsList<RelativeImportPrefix> prefixes
-
targets
ImportFromTargets targets
-
-
-
Class hydra.ext.python.syntax.ImportFromAsName extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.ImportFromTargets extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.ImportFromTargets.Parens extends ImportFromTargets implements Serializable
-
Serialized Fields
-
value
ConsList<ImportFromAsName> value
-
-
-
Class hydra.ext.python.syntax.ImportFromTargets.Simple extends ImportFromTargets implements Serializable
-
Serialized Fields
-
value
ConsList<ImportFromAsName> value
-
-
-
Class hydra.ext.python.syntax.ImportFromTargets.Star extends ImportFromTargets implements Serializable
-
Class hydra.ext.python.syntax.ImportName extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<DottedAsName> value
-
-
-
Class hydra.ext.python.syntax.ImportStatement extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.ImportStatement.From extends ImportStatement implements Serializable
-
Serialized Fields
-
value
ImportFrom value
-
-
-
Class hydra.ext.python.syntax.ImportStatement.Name extends ImportStatement implements Serializable
-
Serialized Fields
-
value
ImportName value
-
-
-
Class hydra.ext.python.syntax.Interactive extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Statement value
-
-
-
Class hydra.ext.python.syntax.Inversion extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.Inversion.Not extends Inversion implements Serializable
-
Serialized Fields
-
value
Inversion value
-
-
-
Class hydra.ext.python.syntax.Inversion.Simple extends Inversion implements Serializable
-
Serialized Fields
-
value
Comparison value
-
-
-
Class hydra.ext.python.syntax.ItemsPattern extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<KeyValuePattern> value
-
-
-
Class hydra.ext.python.syntax.KeyValuePattern extends java.lang.Object implements Serializable
-
Serialized Fields
-
key
LiteralExpressionOrAttribute key
-
value
Pattern value
-
-
-
Class hydra.ext.python.syntax.KeywordPattern extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.KeywordPatterns extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<KeywordPattern> value
-
-
-
Class hydra.ext.python.syntax.Keywords extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ParamNoDefault value
-
-
-
Class hydra.ext.python.syntax.Kvpair extends java.lang.Object implements Serializable
-
Serialized Fields
-
key
Expression key
-
value
Expression value
-
-
-
Class hydra.ext.python.syntax.Kwarg extends java.lang.Object implements Serializable
-
Serialized Fields
-
name
Name name
-
value
Expression value
-
-
-
Class hydra.ext.python.syntax.KwargOrDoubleStarred extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.KwargOrDoubleStarred.DoubleStarred extends KwargOrDoubleStarred implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.python.syntax.KwargOrDoubleStarred.Kwarg extends KwargOrDoubleStarred implements Serializable
-
Serialized Fields
-
value
Kwarg value
-
-
-
Class hydra.ext.python.syntax.KwargOrStarred extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.KwargOrStarred.Kwarg extends KwargOrStarred implements Serializable
-
Serialized Fields
-
value
Kwarg value
-
-
-
Class hydra.ext.python.syntax.KwargOrStarred.Starred extends KwargOrStarred implements Serializable
-
Serialized Fields
-
value
StarredExpression value
-
-
-
Class hydra.ext.python.syntax.Lambda extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
Expression body
-
params
LambdaParameters params
-
-
-
Class hydra.ext.python.syntax.LambdaKwds extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
LambdaParamNoDefault value
-
-
-
Class hydra.ext.python.syntax.LambdaParameters extends java.lang.Object implements Serializable
-
Serialized Fields
-
paramNoDefault
ConsList<LambdaParamNoDefault> paramNoDefault
-
paramWithDefault
ConsList<LambdaParamWithDefault> paramWithDefault
-
slashNoDefault
Maybe<LambdaSlashNoDefault> slashNoDefault
-
starEtc
Maybe<LambdaStarEtc> starEtc
-
-
-
Class hydra.ext.python.syntax.LambdaParamMaybeDefault extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.LambdaParamNoDefault extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Name value
-
-
-
Class hydra.ext.python.syntax.LambdaParamWithDefault extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.LambdaSlashNoDefault extends java.lang.Object implements Serializable
-
Serialized Fields
-
parameters
ConsList<LambdaParamNoDefault> parameters
-
-
-
Class hydra.ext.python.syntax.LambdaSlashWithDefault extends java.lang.Object implements Serializable
-
Serialized Fields
-
paramNoDefault
ConsList<LambdaParamNoDefault> paramNoDefault
-
paramWithDefault
ConsList<LambdaParamWithDefault> paramWithDefault
-
-
-
Class hydra.ext.python.syntax.LambdaStarEtc extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.LambdaStarEtc.Kwds extends LambdaStarEtc implements Serializable
-
Serialized Fields
-
value
LambdaKwds value
-
-
-
Class hydra.ext.python.syntax.LambdaStarEtc.ParamMaybeDefault extends LambdaStarEtc implements Serializable
-
Serialized Fields
-
value
ConsList<LambdaParamMaybeDefault> value
-
-
-
Class hydra.ext.python.syntax.LambdaStarEtc.ParamNoDefault extends LambdaStarEtc implements Serializable
-
Serialized Fields
-
value
LambdaParamNoDefault value
-
-
-
Class hydra.ext.python.syntax.LambdaStarEtc.Star extends LambdaStarEtc implements Serializable
-
Serialized Fields
-
value
java.lang.Boolean value
-
-
-
Class hydra.ext.python.syntax.List extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<StarNamedExpression> value
-
-
-
Class hydra.ext.python.syntax.Listcomp extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
NamedExpression expression
-
forIfClauses
ForIfClauses forIfClauses
-
-
-
Class hydra.ext.python.syntax.LiteralExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.LiteralExpression.Complex extends LiteralExpression implements Serializable
-
Serialized Fields
-
value
ComplexNumber value
-
-
-
Class hydra.ext.python.syntax.LiteralExpression.False extends LiteralExpression implements Serializable
-
Class hydra.ext.python.syntax.LiteralExpression.None extends LiteralExpression implements Serializable
-
Class hydra.ext.python.syntax.LiteralExpression.Number_ extends LiteralExpression implements Serializable
-
Serialized Fields
-
value
SignedNumber value
-
-
-
Class hydra.ext.python.syntax.LiteralExpression.String_ extends LiteralExpression implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.python.syntax.LiteralExpression.True extends LiteralExpression implements Serializable
-
Class hydra.ext.python.syntax.LiteralExpressionOrAttribute extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.LiteralExpressionOrAttribute.Attribute extends LiteralExpressionOrAttribute implements Serializable
-
Serialized Fields
-
value
Attribute value
-
-
-
Class hydra.ext.python.syntax.LiteralExpressionOrAttribute.Literal extends LiteralExpressionOrAttribute implements Serializable
-
Serialized Fields
-
value
LiteralExpression value
-
-
-
Class hydra.ext.python.syntax.MappingPattern extends java.lang.Object implements Serializable
-
Serialized Fields
-
doubleStar
Maybe<DoubleStarPattern> doubleStar
-
items
Maybe<ItemsPattern> items
-
-
-
Class hydra.ext.python.syntax.MatchStatement extends java.lang.Object implements Serializable
-
Serialized Fields
-
cases
ConsList<CaseBlock> cases
-
subject
SubjectExpression subject
-
-
-
Class hydra.ext.python.syntax.MaybeSequencePattern extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<MaybeStarPattern> value
-
-
-
Class hydra.ext.python.syntax.MaybeStarPattern extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.MaybeStarPattern.Pattern extends MaybeStarPattern implements Serializable
-
Serialized Fields
-
value
Pattern value
-
-
-
Class hydra.ext.python.syntax.MaybeStarPattern.Star extends MaybeStarPattern implements Serializable
-
Serialized Fields
-
value
StarPattern value
-
-
-
Class hydra.ext.python.syntax.Module extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.Name extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.python.syntax.NamedExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.NamedExpression.Assignment extends NamedExpression implements Serializable
-
Serialized Fields
-
value
AssignmentExpression value
-
-
-
Class hydra.ext.python.syntax.NamedExpression.Simple extends NamedExpression implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.python.syntax.NameOrAttribute extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.NoDefaultStarAnnotationStarEtc extends java.lang.Object implements Serializable
-
Serialized Fields
-
keywords
Maybe<Keywords> keywords
-
paramMaybeDefault
ConsList<ParamMaybeDefault> paramMaybeDefault
-
paramNoDefaultStarAnnotation
ParamNoDefaultStarAnnotation paramNoDefaultStarAnnotation
-
-
-
Class hydra.ext.python.syntax.NoDefaultStarEtc extends java.lang.Object implements Serializable
-
Serialized Fields
-
keywords
Maybe<Keywords> keywords
-
paramMaybeDefault
ConsList<ParamMaybeDefault> paramMaybeDefault
-
paramNoDefault
ParamNoDefault paramNoDefault
-
-
-
Class hydra.ext.python.syntax.Number_ extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.Number_.Float_ extends Number_ implements Serializable
-
Serialized Fields
-
value
java.math.BigDecimal value
-
-
-
Class hydra.ext.python.syntax.Number_.Integer_ extends Number_ implements Serializable
-
Serialized Fields
-
value
java.math.BigInteger value
-
-
-
Class hydra.ext.python.syntax.OpenSequencePattern extends java.lang.Object implements Serializable
-
Serialized Fields
-
head
MaybeStarPattern head
-
tail
Maybe<MaybeSequencePattern> tail
-
-
-
Class hydra.ext.python.syntax.OrPattern extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<ClosedPattern> value
-
-
-
Class hydra.ext.python.syntax.Param extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotation
Maybe<Annotation> annotation
-
name
Name name
-
-
-
Class hydra.ext.python.syntax.Parameters extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.Parameters.ParamNoDefault extends Parameters implements Serializable
-
Serialized Fields
-
value
ParamNoDefaultParameters value
-
-
-
Class hydra.ext.python.syntax.Parameters.ParamWithDefault extends Parameters implements Serializable
-
Serialized Fields
-
value
ParamWithDefaultParameters value
-
-
-
Class hydra.ext.python.syntax.Parameters.SlashNoDefault extends Parameters implements Serializable
-
Serialized Fields
-
value
SlashNoDefaultParameters value
-
-
-
Class hydra.ext.python.syntax.Parameters.SlashWithDefault extends Parameters implements Serializable
-
Serialized Fields
-
value
SlashWithDefaultParameters value
-
-
-
Class hydra.ext.python.syntax.Parameters.StarEtc extends Parameters implements Serializable
-
Serialized Fields
-
value
StarEtc value
-
-
-
Class hydra.ext.python.syntax.ParamMaybeDefault extends java.lang.Object implements Serializable
-
Serialized Fields
-
default_
Maybe<Default> default_
-
param
Param param
-
typeComment
Maybe<TypeComment> typeComment
-
-
-
Class hydra.ext.python.syntax.ParamNoDefault extends java.lang.Object implements Serializable
-
Serialized Fields
-
param
Param param
-
typeComment
Maybe<TypeComment> typeComment
-
-
-
Class hydra.ext.python.syntax.ParamNoDefaultParameters extends java.lang.Object implements Serializable
-
Serialized Fields
-
paramNoDefault
ConsList<ParamNoDefault> paramNoDefault
-
paramWithDefault
ConsList<ParamWithDefault> paramWithDefault
-
starEtc
Maybe<StarEtc> starEtc
-
-
-
Class hydra.ext.python.syntax.ParamNoDefaultStarAnnotation extends java.lang.Object implements Serializable
-
Serialized Fields
-
paramStarAnnotation
ParamStarAnnotation paramStarAnnotation
-
typeComment
Maybe<TypeComment> typeComment
-
-
-
Class hydra.ext.python.syntax.ParamStarAnnotation extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotation
StarAnnotation annotation
-
name
Name name
-
-
-
Class hydra.ext.python.syntax.ParamWithDefault extends java.lang.Object implements Serializable
-
Serialized Fields
-
default_
Default default_
-
param
Param param
-
typeComment
Maybe<TypeComment> typeComment
-
-
-
Class hydra.ext.python.syntax.ParamWithDefaultParameters extends java.lang.Object implements Serializable
-
Serialized Fields
-
paramWithDefault
ConsList<ParamWithDefault> paramWithDefault
-
starEtc
Maybe<StarEtc> starEtc
-
-
-
Class hydra.ext.python.syntax.Pattern extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.Pattern.As extends Pattern implements Serializable
-
Serialized Fields
-
value
AsPattern value
-
-
-
Class hydra.ext.python.syntax.Pattern.Or extends Pattern implements Serializable
-
Serialized Fields
-
value
OrPattern value
-
-
-
Class hydra.ext.python.syntax.PatternCaptureTarget extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Name value
-
-
-
Class hydra.ext.python.syntax.Patterns extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.Patterns.Pattern extends Patterns implements Serializable
-
Serialized Fields
-
value
Pattern value
-
-
-
Class hydra.ext.python.syntax.Patterns.Sequence extends Patterns implements Serializable
-
Serialized Fields
-
value
OpenSequencePattern value
-
-
-
Class hydra.ext.python.syntax.PlusOrMinus extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.PlusOrMinus.Minus extends PlusOrMinus implements Serializable
-
Class hydra.ext.python.syntax.PlusOrMinus.Plus extends PlusOrMinus implements Serializable
-
Class hydra.ext.python.syntax.PosArg extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.PosArg.Assignment extends PosArg implements Serializable
-
Serialized Fields
-
value
AssignmentExpression value
-
-
-
Class hydra.ext.python.syntax.PosArg.Expression extends PosArg implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.python.syntax.PosArg.Starred extends PosArg implements Serializable
-
Serialized Fields
-
value
StarredExpression value
-
-
-
Class hydra.ext.python.syntax.PositionalPatterns extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.Power extends java.lang.Object implements Serializable
-
Serialized Fields
-
lhs
AwaitPrimary lhs
-
rhs
Maybe<Factor> rhs
-
-
-
Class hydra.ext.python.syntax.Primary extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.Primary.Compound extends Primary implements Serializable
-
Serialized Fields
-
value
PrimaryWithRhs value
-
-
-
Class hydra.ext.python.syntax.Primary.Simple extends Primary implements Serializable
-
Serialized Fields
-
value
Atom value
-
-
-
Class hydra.ext.python.syntax.PrimaryRhs extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.PrimaryRhs.Call extends PrimaryRhs implements Serializable
-
Serialized Fields
-
value
Args value
-
-
-
Class hydra.ext.python.syntax.PrimaryRhs.Genexp extends PrimaryRhs implements Serializable
-
Serialized Fields
-
value
Genexp value
-
-
-
Class hydra.ext.python.syntax.PrimaryRhs.Project extends PrimaryRhs implements Serializable
-
Serialized Fields
-
value
Name value
-
-
-
Class hydra.ext.python.syntax.PrimaryRhs.Slices extends PrimaryRhs implements Serializable
-
Serialized Fields
-
value
Slices value
-
-
-
Class hydra.ext.python.syntax.PrimaryWithRhs extends java.lang.Object implements Serializable
-
Serialized Fields
-
primary
Primary primary
-
rhs
PrimaryRhs rhs
-
-
-
Class hydra.ext.python.syntax.QuoteStyle extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.QuoteStyle.Double_ extends QuoteStyle implements Serializable
-
Class hydra.ext.python.syntax.QuoteStyle.Single extends QuoteStyle implements Serializable
-
Class hydra.ext.python.syntax.QuoteStyle.Triple extends QuoteStyle implements Serializable
-
Class hydra.ext.python.syntax.RaiseExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
Expression expression
-
from
Maybe<Expression> from
-
-
-
Class hydra.ext.python.syntax.RaiseStatement extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Maybe<RaiseExpression> value
-
-
-
Class hydra.ext.python.syntax.RealNumber extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Number_ value
-
-
-
Class hydra.ext.python.syntax.RelativeImportPrefix extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.RelativeImportPrefix.Dot extends RelativeImportPrefix implements Serializable
-
Class hydra.ext.python.syntax.RelativeImportPrefix.Ellipsis extends RelativeImportPrefix implements Serializable
-
Class hydra.ext.python.syntax.ReturnStatement extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<StarExpression> value
-
-
-
Class hydra.ext.python.syntax.SequencePattern extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.SequencePattern.List extends SequencePattern implements Serializable
-
Serialized Fields
-
value
Maybe<MaybeSequencePattern> value
-
-
-
Class hydra.ext.python.syntax.SequencePattern.Tuple extends SequencePattern implements Serializable
-
Serialized Fields
-
value
Maybe<OpenSequencePattern> value
-
-
-
Class hydra.ext.python.syntax.Set extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<StarNamedExpression> value
-
-
-
Class hydra.ext.python.syntax.Setcomp extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
NamedExpression expression
-
forIfClauses
ForIfClauses forIfClauses
-
-
-
Class hydra.ext.python.syntax.ShiftExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.ShiftLhs extends java.lang.Object implements Serializable
-
Serialized Fields
-
operand
ShiftExpression operand
-
operator
ShiftOp operator
-
-
-
Class hydra.ext.python.syntax.ShiftOp extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.ShiftOp.Left extends ShiftOp implements Serializable
-
Class hydra.ext.python.syntax.ShiftOp.Right extends ShiftOp implements Serializable
-
Class hydra.ext.python.syntax.SignedNumber extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.SignedNumber.Number_ extends SignedNumber implements Serializable
-
Serialized Fields
-
value
Number_ value
-
-
-
Class hydra.ext.python.syntax.SignedNumber.Sign extends SignedNumber implements Serializable
-
Serialized Fields
-
value
PlusOrMinus value
-
-
-
Class hydra.ext.python.syntax.SignedRealNumber extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.SignedRealNumber.Number_ extends SignedRealNumber implements Serializable
-
Serialized Fields
-
value
RealNumber value
-
-
-
Class hydra.ext.python.syntax.SignedRealNumber.Sign extends SignedRealNumber implements Serializable
-
Serialized Fields
-
value
PlusOrMinus value
-
-
-
Class hydra.ext.python.syntax.SimpleStatement extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.SimpleStatement.Assert extends SimpleStatement implements Serializable
-
Serialized Fields
-
value
AssertStatement value
-
-
-
Class hydra.ext.python.syntax.SimpleStatement.Assignment extends SimpleStatement implements Serializable
-
Serialized Fields
-
value
Assignment value
-
-
-
Class hydra.ext.python.syntax.SimpleStatement.Break extends SimpleStatement implements Serializable
-
Class hydra.ext.python.syntax.SimpleStatement.Continue extends SimpleStatement implements Serializable
-
Class hydra.ext.python.syntax.SimpleStatement.Del extends SimpleStatement implements Serializable
-
Serialized Fields
-
value
DelStatement value
-
-
-
Class hydra.ext.python.syntax.SimpleStatement.Global extends SimpleStatement implements Serializable
-
Class hydra.ext.python.syntax.SimpleStatement.Import extends SimpleStatement implements Serializable
-
Serialized Fields
-
value
ImportStatement value
-
-
-
Class hydra.ext.python.syntax.SimpleStatement.Nonlocal extends SimpleStatement implements Serializable
-
Class hydra.ext.python.syntax.SimpleStatement.Pass extends SimpleStatement implements Serializable
-
Class hydra.ext.python.syntax.SimpleStatement.Raise extends SimpleStatement implements Serializable
-
Serialized Fields
-
value
RaiseStatement value
-
-
-
Class hydra.ext.python.syntax.SimpleStatement.Return extends SimpleStatement implements Serializable
-
Serialized Fields
-
value
ReturnStatement value
-
-
-
Class hydra.ext.python.syntax.SimpleStatement.StarExpressions extends SimpleStatement implements Serializable
-
Serialized Fields
-
value
ConsList<StarExpression> value
-
-
-
Class hydra.ext.python.syntax.SimpleStatement.TypeAlias extends SimpleStatement implements Serializable
-
Serialized Fields
-
value
TypeAlias value
-
-
-
Class hydra.ext.python.syntax.SimpleStatement.Yield extends SimpleStatement implements Serializable
-
Serialized Fields
-
value
YieldStatement value
-
-
-
Class hydra.ext.python.syntax.SimpleTypeParameter extends java.lang.Object implements Serializable
-
Serialized Fields
-
bound
Maybe<Expression> bound
-
default_
Maybe<Expression> default_
-
name
Name name
-
-
-
Class hydra.ext.python.syntax.SingleSubscriptAttributeTarget extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.SingleSubscriptAttributeTarget.PrimaryAndName extends SingleSubscriptAttributeTarget implements Serializable
-
Serialized Fields
-
value
TPrimaryAndName value
-
-
-
Class hydra.ext.python.syntax.SingleSubscriptAttributeTarget.PrimaryAndSlices extends SingleSubscriptAttributeTarget implements Serializable
-
Serialized Fields
-
value
TPrimaryAndSlices value
-
-
-
Class hydra.ext.python.syntax.SingleTarget extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.SingleTarget.Name extends SingleTarget implements Serializable
-
Serialized Fields
-
value
Name value
-
-
-
Class hydra.ext.python.syntax.SingleTarget.Parens extends SingleTarget implements Serializable
-
Serialized Fields
-
value
SingleTarget value
-
-
-
Class hydra.ext.python.syntax.SingleTarget.SubscriptAttributeTarget extends SingleTarget implements Serializable
-
Serialized Fields
-
value
SingleSubscriptAttributeTarget value
-
-
-
Class hydra.ext.python.syntax.SlashNoDefault extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<ParamNoDefault> value
-
-
-
Class hydra.ext.python.syntax.SlashNoDefaultParameters extends java.lang.Object implements Serializable
-
Serialized Fields
-
paramNoDefault
ConsList<ParamNoDefault> paramNoDefault
-
paramWithDefault
ConsList<ParamWithDefault> paramWithDefault
-
slash
SlashNoDefault slash
-
starEtc
Maybe<StarEtc> starEtc
-
-
-
Class hydra.ext.python.syntax.SlashWithDefault extends java.lang.Object implements Serializable
-
Serialized Fields
-
paramNoDefault
ConsList<ParamNoDefault> paramNoDefault
-
paramWithDefault
ConsList<ParamWithDefault> paramWithDefault
-
-
-
Class hydra.ext.python.syntax.SlashWithDefaultParameters extends java.lang.Object implements Serializable
-
Serialized Fields
-
paramNoDefault
ConsList<ParamNoDefault> paramNoDefault
-
paramWithDefault
ConsList<ParamWithDefault> paramWithDefault
-
starEtc
Maybe<StarEtc> starEtc
-
-
-
Class hydra.ext.python.syntax.Slice extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.Slice.Named extends Slice implements Serializable
-
Serialized Fields
-
value
NamedExpression value
-
-
-
Class hydra.ext.python.syntax.Slice.Slice_ extends Slice implements Serializable
-
Serialized Fields
-
value
SliceExpression value
-
-
-
Class hydra.ext.python.syntax.SliceExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
start
Maybe<Expression> start
-
step
Maybe<Expression> step
-
stop
Maybe<Expression> stop
-
-
-
Class hydra.ext.python.syntax.SliceOrStarredExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.SliceOrStarredExpression.Slice extends SliceOrStarredExpression implements Serializable
-
Serialized Fields
-
value
Slice value
-
-
-
Class hydra.ext.python.syntax.SliceOrStarredExpression.Starred extends SliceOrStarredExpression implements Serializable
-
Serialized Fields
-
value
StarredExpression value
-
-
-
Class hydra.ext.python.syntax.Slices extends java.lang.Object implements Serializable
-
Serialized Fields
-
head
Slice head
-
tail
ConsList<SliceOrStarredExpression> tail
-
-
-
Class hydra.ext.python.syntax.StarAnnotation extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
StarExpression value
-
-
-
Class hydra.ext.python.syntax.StarAtom extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.StarAtom.Name extends StarAtom implements Serializable
-
Serialized Fields
-
value
Name value
-
-
-
Class hydra.ext.python.syntax.StarAtom.StarTargetsListSeq extends StarAtom implements Serializable
-
Serialized Fields
-
value
Maybe<StarTargetsListSeq> value
-
-
-
Class hydra.ext.python.syntax.StarAtom.StarTargetsTupleSeq extends StarAtom implements Serializable
-
Serialized Fields
-
value
Maybe<StarTargetsTupleSeq> value
-
-
-
Class hydra.ext.python.syntax.StarAtom.TargetWithStarAtom extends StarAtom implements Serializable
-
Serialized Fields
-
value
TargetWithStarAtom value
-
-
-
Class hydra.ext.python.syntax.StarEtc extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.StarEtc.Keywords extends StarEtc implements Serializable
-
Serialized Fields
-
value
Keywords value
-
-
-
Class hydra.ext.python.syntax.StarEtc.StarComma extends StarEtc implements Serializable
-
Serialized Fields
-
value
CommaStarEtc value
-
-
-
Class hydra.ext.python.syntax.StarEtc.StarNoDefault extends StarEtc implements Serializable
-
Serialized Fields
-
value
NoDefaultStarEtc value
-
-
-
Class hydra.ext.python.syntax.StarEtc.StarNoDefaultStarAnnotation extends StarEtc implements Serializable
-
Serialized Fields
-
value
NoDefaultStarAnnotationStarEtc value
-
-
-
Class hydra.ext.python.syntax.StarExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.StarExpression.Simple extends StarExpression implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.python.syntax.StarExpression.Star extends StarExpression implements Serializable
-
Serialized Fields
-
value
BitwiseOr value
-
-
-
Class hydra.ext.python.syntax.StarNamedExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.StarNamedExpression.Simple extends StarNamedExpression implements Serializable
-
Serialized Fields
-
value
NamedExpression value
-
-
-
Class hydra.ext.python.syntax.StarNamedExpression.Star extends StarNamedExpression implements Serializable
-
Serialized Fields
-
value
BitwiseOr value
-
-
-
Class hydra.ext.python.syntax.StarNamedExpressions extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<StarNamedExpression> value
-
-
-
Class hydra.ext.python.syntax.StarPattern extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.StarPattern.Capture extends StarPattern implements Serializable
-
Serialized Fields
-
value
PatternCaptureTarget value
-
-
-
Class hydra.ext.python.syntax.StarPattern.Wildcard extends StarPattern implements Serializable
-
Class hydra.ext.python.syntax.StarredExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.python.syntax.StarTarget extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.StarTarget.Starred extends StarTarget implements Serializable
-
Serialized Fields
-
value
StarTarget value
-
-
-
Class hydra.ext.python.syntax.StarTarget.Unstarred extends StarTarget implements Serializable
-
Serialized Fields
-
value
TargetWithStarAtom value
-
-
-
Class hydra.ext.python.syntax.StarTargetsListSeq extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<StarTarget> value
-
-
-
Class hydra.ext.python.syntax.StarTargetsTupleSeq extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<StarTarget> value
-
-
-
Class hydra.ext.python.syntax.StarTypeParameter extends java.lang.Object implements Serializable
-
Serialized Fields
-
default_
Maybe<StarExpression> default_
-
name
Name name
-
-
-
Class hydra.ext.python.syntax.Statement extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.Statement.Annotated extends Statement implements Serializable
-
Serialized Fields
-
value
AnnotatedStatement value
-
-
-
Class hydra.ext.python.syntax.Statement.Compound extends Statement implements Serializable
-
Serialized Fields
-
value
CompoundStatement value
-
-
-
Class hydra.ext.python.syntax.Statement.Simple extends Statement implements Serializable
-
Serialized Fields
-
value
ConsList<SimpleStatement> value
-
-
-
Class hydra.ext.python.syntax.String_ extends java.lang.Object implements Serializable
-
Serialized Fields
-
quoteStyle
QuoteStyle quoteStyle
-
value
java.lang.String value
-
-
-
Class hydra.ext.python.syntax.SubjectExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.SubjectExpression.Simple extends SubjectExpression implements Serializable
-
Serialized Fields
-
value
NamedExpression value
-
-
-
Class hydra.ext.python.syntax.SubjectExpression.Tuple extends SubjectExpression implements Serializable
-
Serialized Fields
-
value
ConsList<StarNamedExpression> value
-
-
-
Class hydra.ext.python.syntax.Sum extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.SumLhs extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.SumOp extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.SumOp.Add extends SumOp implements Serializable
-
Class hydra.ext.python.syntax.SumOp.Sub extends SumOp implements Serializable
-
Class hydra.ext.python.syntax.TargetWithStarAtom extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.TargetWithStarAtom.Atom extends TargetWithStarAtom implements Serializable
-
Serialized Fields
-
value
StarAtom value
-
-
-
Class hydra.ext.python.syntax.TargetWithStarAtom.Project extends TargetWithStarAtom implements Serializable
-
Serialized Fields
-
value
TPrimaryAndName value
-
-
-
Class hydra.ext.python.syntax.TargetWithStarAtom.Slices extends TargetWithStarAtom implements Serializable
-
Serialized Fields
-
value
TPrimaryAndSlices value
-
-
-
Class hydra.ext.python.syntax.Term extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.TermLhs extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.TermOp extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.TermOp.Div extends TermOp implements Serializable
-
Class hydra.ext.python.syntax.TermOp.Floordiv extends TermOp implements Serializable
-
Class hydra.ext.python.syntax.TermOp.Matmul extends TermOp implements Serializable
-
Class hydra.ext.python.syntax.TermOp.Mod extends TermOp implements Serializable
-
Class hydra.ext.python.syntax.TermOp.Mul extends TermOp implements Serializable
-
Class hydra.ext.python.syntax.TPrimary extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.TPrimary.Atom extends TPrimary implements Serializable
-
Serialized Fields
-
value
Atom value
-
-
-
Class hydra.ext.python.syntax.TPrimary.PrimaryAndArguments extends TPrimary implements Serializable
-
Serialized Fields
-
value
TPrimaryAndArguments value
-
-
-
Class hydra.ext.python.syntax.TPrimary.PrimaryAndGenexp extends TPrimary implements Serializable
-
Serialized Fields
-
value
TPrimaryAndGenexp value
-
-
-
Class hydra.ext.python.syntax.TPrimary.PrimaryAndName extends TPrimary implements Serializable
-
Serialized Fields
-
value
TPrimaryAndName value
-
-
-
Class hydra.ext.python.syntax.TPrimary.PrimaryAndSlices extends TPrimary implements Serializable
-
Serialized Fields
-
value
TPrimaryAndSlices value
-
-
-
Class hydra.ext.python.syntax.TPrimaryAndArguments extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.TPrimaryAndGenexp extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.TPrimaryAndName extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.TPrimaryAndSlices extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.TryExceptStarStatement extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.TryExceptStatement extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.TryFinallyStatement extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.TryStatement extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.TryStatement.Except extends TryStatement implements Serializable
-
Serialized Fields
-
value
TryExceptStatement value
-
-
-
Class hydra.ext.python.syntax.TryStatement.ExceptStar extends TryStatement implements Serializable
-
Serialized Fields
-
value
TryExceptStarStatement value
-
-
-
Class hydra.ext.python.syntax.TryStatement.Finally extends TryStatement implements Serializable
-
Serialized Fields
-
value
TryFinallyStatement value
-
-
-
Class hydra.ext.python.syntax.Tuple extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<StarNamedExpression> value
-
-
-
Class hydra.ext.python.syntax.TypeAlias extends java.lang.Object implements Serializable
-
Serialized Fields
-
expression
Expression expression
-
name
Name name
-
typeParams
ConsList<TypeParameter> typeParams
-
-
-
Class hydra.ext.python.syntax.TypeComment extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.python.syntax.TypedAssignment extends java.lang.Object implements Serializable
-
Serialized Fields
-
lhs
SingleTarget lhs
-
rhs
Maybe<AnnotatedRhs> rhs
-
type
Expression type
-
-
-
Class hydra.ext.python.syntax.TypeExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.TypeExpression.DoubleStarredExpression extends TypeExpression implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.python.syntax.TypeExpression.Expression extends TypeExpression implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.python.syntax.TypeExpression.StarredExpression extends TypeExpression implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.python.syntax.TypeParameter extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.TypeParameter.DoubleStar extends TypeParameter implements Serializable
-
Serialized Fields
-
value
DoubleStarTypeParameter value
-
-
-
Class hydra.ext.python.syntax.TypeParameter.Simple extends TypeParameter implements Serializable
-
Serialized Fields
-
value
SimpleTypeParameter value
-
-
-
Class hydra.ext.python.syntax.TypeParameter.Star extends TypeParameter implements Serializable
-
Serialized Fields
-
value
StarTypeParameter value
-
-
-
Class hydra.ext.python.syntax.UntypedAssignment extends java.lang.Object implements Serializable
-
Serialized Fields
-
rhs
AnnotatedRhs rhs
-
targets
ConsList<StarTarget> targets
-
typeComment
Maybe<TypeComment> typeComment
-
-
-
Class hydra.ext.python.syntax.ValuePattern extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Attribute value
-
-
-
Class hydra.ext.python.syntax.WhileStatement extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
Block body
-
condition
NamedExpression condition
-
else_
Maybe<Block> else_
-
-
-
Class hydra.ext.python.syntax.WithItem extends java.lang.Object implements Serializable
-
Serialized Fields
-
as
Maybe<StarTarget> as
-
expression
Expression expression
-
-
-
Class hydra.ext.python.syntax.WithStatement extends java.lang.Object implements Serializable
-
Serialized Fields
-
async
java.lang.Boolean async
-
body
Block body
-
items
ConsList<WithItem> items
-
typeComment
Maybe<TypeComment> typeComment
-
-
-
Class hydra.ext.python.syntax.YieldExpression extends java.lang.Object implements Serializable
-
Class hydra.ext.python.syntax.YieldExpression.From extends YieldExpression implements Serializable
-
Serialized Fields
-
value
Expression value
-
-
-
Class hydra.ext.python.syntax.YieldExpression.Simple extends YieldExpression implements Serializable
-
Serialized Fields
-
value
ConsList<StarExpression> value
-
-
-
Class hydra.ext.python.syntax.YieldStatement extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
YieldExpression value
-
-
-
-
Package hydra.ext.scala.syntax
-
Class hydra.ext.scala.syntax.Case extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.CaseTree extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.CaseTree.Case extends CaseTree implements Serializable
-
Serialized Fields
-
value
Case value
-
-
-
Class hydra.ext.scala.syntax.CaseTree.TypeCase extends CaseTree implements Serializable
-
Serialized Fields
-
value
TypeCase value
-
-
-
Class hydra.ext.scala.syntax.Ctor extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Ctor_Primary extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Ctor_Secondary extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Ctor.Primary extends Ctor implements Serializable
-
Serialized Fields
-
value
Ctor_Primary value
-
-
-
Class hydra.ext.scala.syntax.Ctor.Secondary extends Ctor implements Serializable
-
Serialized Fields
-
value
Ctor_Secondary value
-
-
-
Class hydra.ext.scala.syntax.Data extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Data_Annotate extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Data_Anonymous extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Void value
-
-
-
Class hydra.ext.scala.syntax.Data_Apply extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Data_ApplyInfix extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Data_ApplyType extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Data_ApplyUnary extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Data_ApplyUsing extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Data_Ascribe extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Data_Assign extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Data_Block extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Data_ContextFunction extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
Data body
-
params
ConsList<Data_Param> params
-
-
-
Class hydra.ext.scala.syntax.Data_Do extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Data_EndMarker extends java.lang.Object implements Serializable
-
Serialized Fields
-
name
Data_Name name
-
-
-
Class hydra.ext.scala.syntax.Data_Eta extends java.lang.Object implements Serializable
-
Serialized Fields
-
expr
Data expr
-
-
-
Class hydra.ext.scala.syntax.Data_For extends java.lang.Object implements Serializable
-
Serialized Fields
-
enums
ConsList<Enumerator> enums
-
-
-
Class hydra.ext.scala.syntax.Data_ForYield extends java.lang.Object implements Serializable
-
Serialized Fields
-
enums
ConsList<Enumerator> enums
-
-
-
Class hydra.ext.scala.syntax.Data_Function extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
Data body
-
params
ConsList<Data_Param> params
-
-
-
Class hydra.ext.scala.syntax.Data_FunctionData extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Data_FunctionData.ContextFunction extends Data_FunctionData implements Serializable
-
Serialized Fields
-
value
Data_ContextFunction value
-
-
-
Class hydra.ext.scala.syntax.Data_FunctionData.Function extends Data_FunctionData implements Serializable
-
Serialized Fields
-
value
Data_Function value
-
-
-
Class hydra.ext.scala.syntax.Data_If extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Data_Interpolate extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Data_Match extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Data_Name extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
PredefString value
-
-
-
Class hydra.ext.scala.syntax.Data_New extends java.lang.Object implements Serializable
-
Serialized Fields
-
init
Init init
-
-
-
Class hydra.ext.scala.syntax.Data_NewAnonymous extends java.lang.Object implements Serializable
-
Serialized Fields
-
templ
Template templ
-
-
-
Class hydra.ext.scala.syntax.Data_Param extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Data_PartialFunction extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Data_PolyFunction extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
Data body
-
tparams
ConsList<Type_Param> tparams
-
-
-
Class hydra.ext.scala.syntax.Data_QuotedMacroExpr extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
Data body
-
-
-
Class hydra.ext.scala.syntax.Data_QuotedMacroType extends java.lang.Object implements Serializable
-
Serialized Fields
-
tpe
Type tpe
-
-
-
Class hydra.ext.scala.syntax.Data_Ref extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Data_Ref.Anonymous extends Data_Ref implements Serializable
-
Serialized Fields
-
value
Data_Anonymous value
-
-
-
Class hydra.ext.scala.syntax.Data_Ref.ApplyUnary extends Data_Ref implements Serializable
-
Serialized Fields
-
value
Data_ApplyUnary value
-
-
-
Class hydra.ext.scala.syntax.Data_Ref.Name extends Data_Ref implements Serializable
-
Serialized Fields
-
value
Data_Name value
-
-
-
Class hydra.ext.scala.syntax.Data_Ref.Select extends Data_Ref implements Serializable
-
Serialized Fields
-
value
Data_Select value
-
-
-
Class hydra.ext.scala.syntax.Data_Ref.Super extends Data_Ref implements Serializable
-
Serialized Fields
-
value
Data_Super value
-
-
-
Class hydra.ext.scala.syntax.Data_Ref.This extends Data_Ref implements Serializable
-
Serialized Fields
-
value
Data_This value
-
-
-
Class hydra.ext.scala.syntax.Data_Repeated extends java.lang.Object implements Serializable
-
Serialized Fields
-
expr
Data expr
-
-
-
Class hydra.ext.scala.syntax.Data_Return extends java.lang.Object implements Serializable
-
Serialized Fields
-
expr
Data expr
-
-
-
Class hydra.ext.scala.syntax.Data_Select extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Data_SplicedMacroExpr extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
Data body
-
-
-
Class hydra.ext.scala.syntax.Data_Super extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Data_This extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Void value
-
-
-
Class hydra.ext.scala.syntax.Data_Throw extends java.lang.Object implements Serializable
-
Serialized Fields
-
expr
Data expr
-
-
-
Class hydra.ext.scala.syntax.Data_Try extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Data_TryWithHandler extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Data_Tuple extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Data_While extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Data_Xml extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Data.Annotate extends Data implements Serializable
-
Serialized Fields
-
value
Data_Annotate value
-
-
-
Class hydra.ext.scala.syntax.Data.Apply extends Data implements Serializable
-
Serialized Fields
-
value
Data_Apply value
-
-
-
Class hydra.ext.scala.syntax.Data.ApplyType extends Data implements Serializable
-
Serialized Fields
-
value
Data_ApplyType value
-
-
-
Class hydra.ext.scala.syntax.Data.ApplyUsing extends Data implements Serializable
-
Serialized Fields
-
value
Data_ApplyUsing value
-
-
-
Class hydra.ext.scala.syntax.Data.Ascribe extends Data implements Serializable
-
Serialized Fields
-
value
Data_Ascribe value
-
-
-
Class hydra.ext.scala.syntax.Data.Assign extends Data implements Serializable
-
Serialized Fields
-
value
Data_Assign value
-
-
-
Class hydra.ext.scala.syntax.Data.Block extends Data implements Serializable
-
Serialized Fields
-
value
Data_Block value
-
-
-
Class hydra.ext.scala.syntax.Data.Do extends Data implements Serializable
-
Serialized Fields
-
value
Data_Do value
-
-
-
Class hydra.ext.scala.syntax.Data.EndMarker extends Data implements Serializable
-
Serialized Fields
-
value
Data_EndMarker value
-
-
-
Class hydra.ext.scala.syntax.Data.Eta extends Data implements Serializable
-
Serialized Fields
-
value
Data_Eta value
-
-
-
Class hydra.ext.scala.syntax.Data.For extends Data implements Serializable
-
Serialized Fields
-
value
Data_For value
-
-
-
Class hydra.ext.scala.syntax.Data.ForYield extends Data implements Serializable
-
Serialized Fields
-
value
Data_ForYield value
-
-
-
Class hydra.ext.scala.syntax.Data.FunctionData extends Data implements Serializable
-
Serialized Fields
-
value
Data_FunctionData value
-
-
-
Class hydra.ext.scala.syntax.Data.If extends Data implements Serializable
-
Serialized Fields
-
value
Data_If value
-
-
-
Class hydra.ext.scala.syntax.Data.Interpolate extends Data implements Serializable
-
Serialized Fields
-
value
Data_Interpolate value
-
-
-
Class hydra.ext.scala.syntax.Data.Lit extends Data implements Serializable
-
Serialized Fields
-
value
Lit value
-
-
-
Class hydra.ext.scala.syntax.Data.Match extends Data implements Serializable
-
Serialized Fields
-
value
Data_Match value
-
-
-
Class hydra.ext.scala.syntax.Data.New extends Data implements Serializable
-
Serialized Fields
-
value
Data_New value
-
-
-
Class hydra.ext.scala.syntax.Data.NewAnonymous extends Data implements Serializable
-
Serialized Fields
-
value
Data_NewAnonymous value
-
-
-
Class hydra.ext.scala.syntax.Data.Param extends Data implements Serializable
-
Serialized Fields
-
value
Data_Param value
-
-
-
Class hydra.ext.scala.syntax.Data.PartialFunction extends Data implements Serializable
-
Serialized Fields
-
value
Data_PartialFunction value
-
-
-
Class hydra.ext.scala.syntax.Data.Placeholder extends Data implements Serializable
-
Class hydra.ext.scala.syntax.Data.PolyFunction extends Data implements Serializable
-
Serialized Fields
-
value
Data_PolyFunction value
-
-
-
Class hydra.ext.scala.syntax.Data.QuotedMacroExpr extends Data implements Serializable
-
Serialized Fields
-
value
Data_QuotedMacroExpr value
-
-
-
Class hydra.ext.scala.syntax.Data.QuotedMacroType extends Data implements Serializable
-
Serialized Fields
-
value
Data_QuotedMacroType value
-
-
-
Class hydra.ext.scala.syntax.Data.Ref extends Data implements Serializable
-
Serialized Fields
-
value
Data_Ref value
-
-
-
Class hydra.ext.scala.syntax.Data.Repeated extends Data implements Serializable
-
Serialized Fields
-
value
Data_Repeated value
-
-
-
Class hydra.ext.scala.syntax.Data.Return extends Data implements Serializable
-
Serialized Fields
-
value
Data_Return value
-
-
-
Class hydra.ext.scala.syntax.Data.SplicedMacroExpr extends Data implements Serializable
-
Serialized Fields
-
value
Data_SplicedMacroExpr value
-
-
-
Class hydra.ext.scala.syntax.Data.Throw extends Data implements Serializable
-
Serialized Fields
-
value
Data_Throw value
-
-
-
Class hydra.ext.scala.syntax.Data.Try extends Data implements Serializable
-
Serialized Fields
-
value
Data_Try value
-
-
-
Class hydra.ext.scala.syntax.Data.TryWithHandler extends Data implements Serializable
-
Serialized Fields
-
value
Data_TryWithHandler value
-
-
-
Class hydra.ext.scala.syntax.Data.Tuple extends Data implements Serializable
-
Serialized Fields
-
value
Data_Tuple value
-
-
-
Class hydra.ext.scala.syntax.Data.While extends Data implements Serializable
-
Serialized Fields
-
value
Data_While value
-
-
-
Class hydra.ext.scala.syntax.Data.Xml extends Data implements Serializable
-
Serialized Fields
-
value
Data_Xml value
-
-
-
Class hydra.ext.scala.syntax.Decl extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Decl_Def extends java.lang.Object implements Serializable
-
Serialized Fields
-
decltpe
Type decltpe
-
mods
ConsList<Mod> mods
-
name
Data_Name name
-
paramss
ConsList<ConsList<Data_Param>> paramss
-
tparams
ConsList<Type_Param> tparams
-
-
-
Class hydra.ext.scala.syntax.Decl_Given extends java.lang.Object implements Serializable
-
Serialized Fields
-
decltpe
Type decltpe
-
mods
ConsList<Mod> mods
-
name
Data_Name name
-
sparams
ConsList<ConsList<Data_Param>> sparams
-
tparams
ConsList<Type_Param> tparams
-
-
-
Class hydra.ext.scala.syntax.Decl_Type extends java.lang.Object implements Serializable
-
Serialized Fields
-
bounds
TypeBounds bounds
-
mods
ConsList<Mod> mods
-
name
Type_Name name
-
tparams
ConsList<Type_Param> tparams
-
-
-
Class hydra.ext.scala.syntax.Decl_Val extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Decl_Var extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Decl.Def extends Decl implements Serializable
-
Serialized Fields
-
value
Decl_Def value
-
-
-
Class hydra.ext.scala.syntax.Decl.Given extends Decl implements Serializable
-
Serialized Fields
-
value
Decl_Given value
-
-
-
Class hydra.ext.scala.syntax.Decl.Type extends Decl implements Serializable
-
Serialized Fields
-
value
Decl_Type value
-
-
-
Class hydra.ext.scala.syntax.Decl.Val extends Decl implements Serializable
-
Serialized Fields
-
value
Decl_Val value
-
-
-
Class hydra.ext.scala.syntax.Decl.Var extends Decl implements Serializable
-
Serialized Fields
-
value
Decl_Var value
-
-
-
Class hydra.ext.scala.syntax.Defn extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Defn_Class extends java.lang.Object implements Serializable
-
Serialized Fields
-
ctor
Ctor_Primary ctor
-
mods
ConsList<Mod> mods
-
name
Type_Name name
-
template
Template template
-
tparams
ConsList<Type_Param> tparams
-
-
-
Class hydra.ext.scala.syntax.Defn_Def extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Defn_Enum extends java.lang.Object implements Serializable
-
Serialized Fields
-
ctor
Ctor_Primary ctor
-
mods
ConsList<Mod> mods
-
name
Type_Name name
-
template
Template template
-
tparams
ConsList<Type_Param> tparams
-
-
-
Class hydra.ext.scala.syntax.Defn_EnumCase extends java.lang.Object implements Serializable
-
Serialized Fields
-
ctor
Ctor_Primary ctor
-
inits
ConsList<Init> inits
-
mods
ConsList<Mod> mods
-
name
Data_Name name
-
tparams
ConsList<Type_Param> tparams
-
-
-
Class hydra.ext.scala.syntax.Defn_ExtensionGroup extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
Stat body
-
parmss
ConsList<ConsList<Data_Param>> parmss
-
tparams
ConsList<Type_Param> tparams
-
-
-
Class hydra.ext.scala.syntax.Defn_Given extends java.lang.Object implements Serializable
-
Serialized Fields
-
mods
ConsList<Mod> mods
-
name
Name name
-
sparams
ConsList<ConsList<Data_Param>> sparams
-
templ
Template templ
-
tparams
ConsList<ConsList<Type_Param>> tparams
-
-
-
Class hydra.ext.scala.syntax.Defn_GivenAlias extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Defn_Macro extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Defn_Object extends java.lang.Object implements Serializable
-
Serialized Fields
-
name
Data_Name name
-
-
-
Class hydra.ext.scala.syntax.Defn_RepeatedEnumCase extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Defn_Trait extends java.lang.Object implements Serializable
-
Serialized Fields
-
ctor
Ctor_Primary ctor
-
mods
ConsList<Mod> mods
-
name
Type_Name name
-
template
Template template
-
tparams
ConsList<Type_Param> tparams
-
-
-
Class hydra.ext.scala.syntax.Defn_Type extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Defn_Val extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Defn_Var extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Defn.Class_ extends Defn implements Serializable
-
Serialized Fields
-
value
Defn_Class value
-
-
-
Class hydra.ext.scala.syntax.Defn.Def extends Defn implements Serializable
-
Serialized Fields
-
value
Defn_Def value
-
-
-
Class hydra.ext.scala.syntax.Defn.Enum_ extends Defn implements Serializable
-
Serialized Fields
-
value
Defn_Enum value
-
-
-
Class hydra.ext.scala.syntax.Defn.EnumCase extends Defn implements Serializable
-
Serialized Fields
-
value
Defn_EnumCase value
-
-
-
Class hydra.ext.scala.syntax.Defn.ExtensionGroup extends Defn implements Serializable
-
Serialized Fields
-
value
Defn_ExtensionGroup value
-
-
-
Class hydra.ext.scala.syntax.Defn.Given extends Defn implements Serializable
-
Serialized Fields
-
value
Defn_Given value
-
-
-
Class hydra.ext.scala.syntax.Defn.GivenAlias extends Defn implements Serializable
-
Serialized Fields
-
value
Defn_GivenAlias value
-
-
-
Class hydra.ext.scala.syntax.Defn.Macro extends Defn implements Serializable
-
Serialized Fields
-
value
Defn_Macro value
-
-
-
Class hydra.ext.scala.syntax.Defn.Object_ extends Defn implements Serializable
-
Serialized Fields
-
value
Defn_Object value
-
-
-
Class hydra.ext.scala.syntax.Defn.RepeatedEnumCase extends Defn implements Serializable
-
Serialized Fields
-
value
Defn_RepeatedEnumCase value
-
-
-
Class hydra.ext.scala.syntax.Defn.Trait extends Defn implements Serializable
-
Serialized Fields
-
value
Defn_Trait value
-
-
-
Class hydra.ext.scala.syntax.Defn.Type extends Defn implements Serializable
-
Serialized Fields
-
value
Defn_Type value
-
-
-
Class hydra.ext.scala.syntax.Defn.Val extends Defn implements Serializable
-
Serialized Fields
-
value
Defn_Val value
-
-
-
Class hydra.ext.scala.syntax.Defn.Var extends Defn implements Serializable
-
Serialized Fields
-
value
Defn_Var value
-
-
-
Class hydra.ext.scala.syntax.Enumerator extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Enumerator_CaseGenerator extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Enumerator_Generator extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Enumerator_Guard extends java.lang.Object implements Serializable
-
Serialized Fields
-
cond
Data cond
-
-
-
Class hydra.ext.scala.syntax.Enumerator_Val extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Enumerator.CaseGenerator extends Enumerator implements Serializable
-
Serialized Fields
-
value
Enumerator_CaseGenerator value
-
-
-
Class hydra.ext.scala.syntax.Enumerator.Generator extends Enumerator implements Serializable
-
Serialized Fields
-
value
Enumerator_Generator value
-
-
-
Class hydra.ext.scala.syntax.Enumerator.Guard extends Enumerator implements Serializable
-
Serialized Fields
-
value
Enumerator_Guard value
-
-
-
Class hydra.ext.scala.syntax.Enumerator.Val extends Enumerator implements Serializable
-
Serialized Fields
-
value
Enumerator_Val value
-
-
-
Class hydra.ext.scala.syntax.Export extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Import extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Importee extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Importee_Given extends java.lang.Object implements Serializable
-
Serialized Fields
-
tpe
Type tpe
-
-
-
Class hydra.ext.scala.syntax.Importee_Name extends java.lang.Object implements Serializable
-
Serialized Fields
-
name
Name name
-
-
-
Class hydra.ext.scala.syntax.Importee_Rename extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Importee_Unimport extends java.lang.Object implements Serializable
-
Serialized Fields
-
name
Name name
-
-
-
Class hydra.ext.scala.syntax.Importee.Given extends Importee implements Serializable
-
Serialized Fields
-
value
Importee_Given value
-
-
-
Class hydra.ext.scala.syntax.Importee.GivenAll extends Importee implements Serializable
-
Class hydra.ext.scala.syntax.Importee.Name extends Importee implements Serializable
-
Serialized Fields
-
value
Importee_Name value
-
-
-
Class hydra.ext.scala.syntax.Importee.Rename extends Importee implements Serializable
-
Serialized Fields
-
value
Importee_Rename value
-
-
-
Class hydra.ext.scala.syntax.Importee.Unimport extends Importee implements Serializable
-
Serialized Fields
-
value
Importee_Unimport value
-
-
-
Class hydra.ext.scala.syntax.Importee.Wildcard extends Importee implements Serializable
-
Class hydra.ext.scala.syntax.Importer extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.ImportExportStat extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.ImportExportStat.Export extends ImportExportStat implements Serializable
-
Serialized Fields
-
value
Export value
-
-
-
Class hydra.ext.scala.syntax.ImportExportStat.Import extends ImportExportStat implements Serializable
-
Serialized Fields
-
value
Import value
-
-
-
Class hydra.ext.scala.syntax.Init extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Lit extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Lit.Boolean_ extends Lit implements Serializable
-
Serialized Fields
-
value
java.lang.Boolean value
-
-
-
Class hydra.ext.scala.syntax.Lit.Byte_ extends Lit implements Serializable
-
Serialized Fields
-
value
java.lang.Byte value
-
-
-
Class hydra.ext.scala.syntax.Lit.Bytes extends Lit implements Serializable
-
Serialized Fields
-
value
ConsList<java.lang.Integer> value
-
-
-
Class hydra.ext.scala.syntax.Lit.Char extends Lit implements Serializable
-
Serialized Fields
-
value
java.lang.Character value
-
-
-
Class hydra.ext.scala.syntax.Lit.Double_ extends Lit implements Serializable
-
Serialized Fields
-
value
java.lang.Double value
-
-
-
Class hydra.ext.scala.syntax.Lit.Float_ extends Lit implements Serializable
-
Serialized Fields
-
value
java.lang.Float value
-
-
-
Class hydra.ext.scala.syntax.Lit.Int extends Lit implements Serializable
-
Serialized Fields
-
value
java.lang.Integer value
-
-
-
Class hydra.ext.scala.syntax.Lit.Long_ extends Lit implements Serializable
-
Serialized Fields
-
value
java.lang.Long value
-
-
-
Class hydra.ext.scala.syntax.Lit.Null extends Lit implements Serializable
-
Class hydra.ext.scala.syntax.Lit.Short_ extends Lit implements Serializable
-
Serialized Fields
-
value
java.lang.Short value
-
-
-
Class hydra.ext.scala.syntax.Lit.String_ extends Lit implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.scala.syntax.Lit.Symbol extends Lit implements Serializable
-
Serialized Fields
-
value
ScalaSymbol value
-
-
-
Class hydra.ext.scala.syntax.Lit.Unit extends Lit implements Serializable
-
Class hydra.ext.scala.syntax.Member extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Member_Data extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Member_Data.Object_ extends Member_Data implements Serializable
-
Serialized Fields
-
value
Pkg_Object value
-
-
-
Class hydra.ext.scala.syntax.Member_Data.Pkg extends Member_Data implements Serializable
-
Serialized Fields
-
value
Pkg value
-
-
-
Class hydra.ext.scala.syntax.Member_Type extends java.lang.Object implements Serializable
-
Serialized Fields
-
name
Type_Name name
-
-
-
Class hydra.ext.scala.syntax.Member.Self extends Member implements Serializable
-
Serialized Fields
-
value
Self value
-
-
-
Class hydra.ext.scala.syntax.Member.Term extends Member implements Serializable
-
Serialized Fields
-
value
Member_Data value
-
-
-
Class hydra.ext.scala.syntax.Member.TermParam extends Member implements Serializable
-
Serialized Fields
-
value
Data_Param value
-
-
-
Class hydra.ext.scala.syntax.Member.Type extends Member implements Serializable
-
Serialized Fields
-
value
Member_Type value
-
-
-
Class hydra.ext.scala.syntax.Member.TypeParam extends Member implements Serializable
-
Serialized Fields
-
value
Type_Param value
-
-
-
Class hydra.ext.scala.syntax.Mod extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Mod_Annot extends java.lang.Object implements Serializable
-
Serialized Fields
-
init
Init init
-
-
-
Class hydra.ext.scala.syntax.Mod_Private extends java.lang.Object implements Serializable
-
Serialized Fields
-
within
Ref within
-
-
-
Class hydra.ext.scala.syntax.Mod_Protected extends java.lang.Object implements Serializable
-
Serialized Fields
-
within
Ref within
-
-
-
Class hydra.ext.scala.syntax.Mod.Abstract extends Mod implements Serializable
-
Class hydra.ext.scala.syntax.Mod.Annot extends Mod implements Serializable
-
Serialized Fields
-
value
Mod_Annot value
-
-
-
Class hydra.ext.scala.syntax.Mod.Case extends Mod implements Serializable
-
Class hydra.ext.scala.syntax.Mod.Contravariant extends Mod implements Serializable
-
Class hydra.ext.scala.syntax.Mod.Covariant extends Mod implements Serializable
-
Class hydra.ext.scala.syntax.Mod.Final extends Mod implements Serializable
-
Class hydra.ext.scala.syntax.Mod.Implicit extends Mod implements Serializable
-
Class hydra.ext.scala.syntax.Mod.Infix extends Mod implements Serializable
-
Class hydra.ext.scala.syntax.Mod.Inline extends Mod implements Serializable
-
Class hydra.ext.scala.syntax.Mod.Lazy extends Mod implements Serializable
-
Class hydra.ext.scala.syntax.Mod.Opaque extends Mod implements Serializable
-
Class hydra.ext.scala.syntax.Mod.Open extends Mod implements Serializable
-
Class hydra.ext.scala.syntax.Mod.Override_ extends Mod implements Serializable
-
Class hydra.ext.scala.syntax.Mod.Private extends Mod implements Serializable
-
Serialized Fields
-
value
Mod_Private value
-
-
-
Class hydra.ext.scala.syntax.Mod.Protected extends Mod implements Serializable
-
Serialized Fields
-
value
Mod_Protected value
-
-
-
Class hydra.ext.scala.syntax.Mod.Sealed extends Mod implements Serializable
-
Class hydra.ext.scala.syntax.Mod.Super extends Mod implements Serializable
-
Class hydra.ext.scala.syntax.Mod.Transparent extends Mod implements Serializable
-
Class hydra.ext.scala.syntax.Mod.Using extends Mod implements Serializable
-
Class hydra.ext.scala.syntax.Mod.ValParam extends Mod implements Serializable
-
Class hydra.ext.scala.syntax.Mod.VarParam extends Mod implements Serializable
-
Class hydra.ext.scala.syntax.Name extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Name.Anonymous extends Name implements Serializable
-
Class hydra.ext.scala.syntax.Name.Indeterminate extends Name implements Serializable
-
Serialized Fields
-
value
PredefString value
-
-
-
Class hydra.ext.scala.syntax.Name.Value extends Name implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.scala.syntax.Pat extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Pat_Alternative extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Pat_Bind extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Pat_Extract extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Pat_ExtractInfix extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Pat_Given extends java.lang.Object implements Serializable
-
Serialized Fields
-
tpe
Type tpe
-
-
-
Class hydra.ext.scala.syntax.Pat_Interpolate extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Pat_Macro extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
Data body
-
-
-
Class hydra.ext.scala.syntax.Pat_Repeated extends java.lang.Object implements Serializable
-
Serialized Fields
-
name
Data_Name name
-
-
-
Class hydra.ext.scala.syntax.Pat_Tuple extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Pat_Typed extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Pat_Var extends java.lang.Object implements Serializable
-
Serialized Fields
-
name
Data_Name name
-
-
-
Class hydra.ext.scala.syntax.Pat_Xml extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Pat.Alternative extends Pat implements Serializable
-
Serialized Fields
-
value
Pat_Alternative value
-
-
-
Class hydra.ext.scala.syntax.Pat.Bind extends Pat implements Serializable
-
Serialized Fields
-
value
Pat_Bind value
-
-
-
Class hydra.ext.scala.syntax.Pat.Extract extends Pat implements Serializable
-
Serialized Fields
-
value
Pat_Extract value
-
-
-
Class hydra.ext.scala.syntax.Pat.ExtractInfix extends Pat implements Serializable
-
Serialized Fields
-
value
Pat_ExtractInfix value
-
-
-
Class hydra.ext.scala.syntax.Pat.Given extends Pat implements Serializable
-
Serialized Fields
-
value
Pat_Given value
-
-
-
Class hydra.ext.scala.syntax.Pat.Interpolate extends Pat implements Serializable
-
Serialized Fields
-
value
Pat_Interpolate value
-
-
-
Class hydra.ext.scala.syntax.Pat.Macro extends Pat implements Serializable
-
Serialized Fields
-
value
Pat_Macro value
-
-
-
Class hydra.ext.scala.syntax.Pat.Repeated extends Pat implements Serializable
-
Serialized Fields
-
value
Pat_Repeated value
-
-
-
Class hydra.ext.scala.syntax.Pat.SeqWildcard extends Pat implements Serializable
-
Class hydra.ext.scala.syntax.Pat.Tuple extends Pat implements Serializable
-
Serialized Fields
-
value
Pat_Tuple value
-
-
-
Class hydra.ext.scala.syntax.Pat.Typed extends Pat implements Serializable
-
Serialized Fields
-
value
Pat_Typed value
-
-
-
Class hydra.ext.scala.syntax.Pat.Var extends Pat implements Serializable
-
Serialized Fields
-
value
Pat_Var value
-
-
-
Class hydra.ext.scala.syntax.Pat.Wildcard extends Pat implements Serializable
-
Class hydra.ext.scala.syntax.Pat.Xml extends Pat implements Serializable
-
Serialized Fields
-
value
Pat_Xml value
-
-
-
Class hydra.ext.scala.syntax.Pkg extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Pkg_Object extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.PredefString extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.scala.syntax.Quasi extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Void value
-
-
-
Class hydra.ext.scala.syntax.Ref extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Ref.Init extends Ref implements Serializable
-
Serialized Fields
-
value
Init value
-
-
-
Class hydra.ext.scala.syntax.Ref.Name extends Ref implements Serializable
-
Serialized Fields
-
value
Name value
-
-
-
Class hydra.ext.scala.syntax.ScalaSymbol extends java.lang.Object implements Serializable
-
Serialized Fields
-
name
java.lang.String name
-
-
-
Class hydra.ext.scala.syntax.Self extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Void value
-
-
-
Class hydra.ext.scala.syntax.Source extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Stat extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Stat.Decl extends Stat implements Serializable
-
Serialized Fields
-
value
Decl value
-
-
-
Class hydra.ext.scala.syntax.Stat.Defn extends Stat implements Serializable
-
Serialized Fields
-
value
Defn value
-
-
-
Class hydra.ext.scala.syntax.Stat.ImportExport extends Stat implements Serializable
-
Serialized Fields
-
value
ImportExportStat value
-
-
-
Class hydra.ext.scala.syntax.Stat.Term extends Stat implements Serializable
-
Serialized Fields
-
value
Data value
-
-
-
Class hydra.ext.scala.syntax.Template extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Tree extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Tree.Bounds extends Tree implements Serializable
-
Serialized Fields
-
value
TypeBounds value
-
-
-
Class hydra.ext.scala.syntax.Tree.CaseTree extends Tree implements Serializable
-
Serialized Fields
-
value
CaseTree value
-
-
-
Class hydra.ext.scala.syntax.Tree.Ctor extends Tree implements Serializable
-
Serialized Fields
-
value
Ctor value
-
-
-
Class hydra.ext.scala.syntax.Tree.Enumerator extends Tree implements Serializable
-
Serialized Fields
-
value
Enumerator value
-
-
-
Class hydra.ext.scala.syntax.Tree.Importee extends Tree implements Serializable
-
Serialized Fields
-
value
Importee value
-
-
-
Class hydra.ext.scala.syntax.Tree.Importer extends Tree implements Serializable
-
Serialized Fields
-
value
Importer value
-
-
-
Class hydra.ext.scala.syntax.Tree.Member extends Tree implements Serializable
-
Serialized Fields
-
value
Member value
-
-
-
Class hydra.ext.scala.syntax.Tree.Mod extends Tree implements Serializable
-
Serialized Fields
-
value
Mod value
-
-
-
Class hydra.ext.scala.syntax.Tree.Pat extends Tree implements Serializable
-
Serialized Fields
-
value
Pat value
-
-
-
Class hydra.ext.scala.syntax.Tree.Quasi extends Tree implements Serializable
-
Serialized Fields
-
value
Quasi value
-
-
-
Class hydra.ext.scala.syntax.Tree.Ref extends Tree implements Serializable
-
Serialized Fields
-
value
Ref value
-
-
-
Class hydra.ext.scala.syntax.Tree.Source extends Tree implements Serializable
-
Serialized Fields
-
value
Source value
-
-
-
Class hydra.ext.scala.syntax.Tree.Stat extends Tree implements Serializable
-
Serialized Fields
-
value
Stat value
-
-
-
Class hydra.ext.scala.syntax.Tree.Template extends Tree implements Serializable
-
Serialized Fields
-
value
Template value
-
-
-
Class hydra.ext.scala.syntax.Tree.Type extends Tree implements Serializable
-
Serialized Fields
-
value
Type value
-
-
-
Class hydra.ext.scala.syntax.Type extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Type_And extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Type_Annotate extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Type_AnonymousName extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.Void value
-
-
-
Class hydra.ext.scala.syntax.Type_Apply extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Type_ApplyInfix extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Type_ByName extends java.lang.Object implements Serializable
-
Serialized Fields
-
tpe
Type tpe
-
-
-
Class hydra.ext.scala.syntax.Type_ContextFunction extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Type_Existential extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Type_Function extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Type_FunctionType extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Type_FunctionType.ContextFunction extends Type_FunctionType implements Serializable
-
Serialized Fields
-
value
Type_ContextFunction value
-
-
-
Class hydra.ext.scala.syntax.Type_FunctionType.Function extends Type_FunctionType implements Serializable
-
Serialized Fields
-
value
Type_Function value
-
-
-
Class hydra.ext.scala.syntax.Type_ImplicitFunction extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Type_Lambda extends java.lang.Object implements Serializable
-
Serialized Fields
-
tparams
ConsList<Type_Param> tparams
-
tpe
Type tpe
-
-
-
Class hydra.ext.scala.syntax.Type_Macro extends java.lang.Object implements Serializable
-
Serialized Fields
-
body
Data body
-
-
-
Class hydra.ext.scala.syntax.Type_Match extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Type_Method extends java.lang.Object implements Serializable
-
Serialized Fields
-
paramss
ConsList<ConsList<Data_Param>> paramss
-
tpe
Type tpe
-
-
-
Class hydra.ext.scala.syntax.Type_Name extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.ext.scala.syntax.Type_Or extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Type_Param extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Type_Placeholder extends java.lang.Object implements Serializable
-
Serialized Fields
-
bounds
TypeBounds bounds
-
-
-
Class hydra.ext.scala.syntax.Type_PolyFunction extends java.lang.Object implements Serializable
-
Serialized Fields
-
tparams
ConsList<Type_Param> tparams
-
tpe
Type tpe
-
-
-
Class hydra.ext.scala.syntax.Type_Project extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Type_Ref extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Type_Ref.Name extends Type_Ref implements Serializable
-
Serialized Fields
-
value
Type_Name value
-
-
-
Class hydra.ext.scala.syntax.Type_Ref.Project extends Type_Ref implements Serializable
-
Serialized Fields
-
value
Type_Project value
-
-
-
Class hydra.ext.scala.syntax.Type_Ref.Select extends Type_Ref implements Serializable
-
Serialized Fields
-
value
Type_Select value
-
-
-
Class hydra.ext.scala.syntax.Type_Ref.Singleton extends Type_Ref implements Serializable
-
Serialized Fields
-
value
Type_Singleton value
-
-
-
Class hydra.ext.scala.syntax.Type_Refine extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Type_Repeated extends java.lang.Object implements Serializable
-
Serialized Fields
-
tpe
Type tpe
-
-
-
Class hydra.ext.scala.syntax.Type_Select extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Type_Singleton extends java.lang.Object implements Serializable
-
Serialized Fields
-
ref
Data_Ref ref
-
-
-
Class hydra.ext.scala.syntax.Type_Tuple extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Type_TypedParam extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Type_Var extends java.lang.Object implements Serializable
-
Serialized Fields
-
name
Type_Name name
-
-
-
Class hydra.ext.scala.syntax.Type_With extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.Type.And extends Type implements Serializable
-
Serialized Fields
-
value
Type_And value
-
-
-
Class hydra.ext.scala.syntax.Type.Annotate extends Type implements Serializable
-
Serialized Fields
-
value
Type_Annotate value
-
-
-
Class hydra.ext.scala.syntax.Type.AnonymousName extends Type implements Serializable
-
Serialized Fields
-
value
Type_AnonymousName value
-
-
-
Class hydra.ext.scala.syntax.Type.Apply extends Type implements Serializable
-
Serialized Fields
-
value
Type_Apply value
-
-
-
Class hydra.ext.scala.syntax.Type.ApplyInfix extends Type implements Serializable
-
Serialized Fields
-
value
Type_ApplyInfix value
-
-
-
Class hydra.ext.scala.syntax.Type.ByName extends Type implements Serializable
-
Serialized Fields
-
value
Type_ByName value
-
-
-
Class hydra.ext.scala.syntax.Type.Existential extends Type implements Serializable
-
Serialized Fields
-
value
Type_Existential value
-
-
-
Class hydra.ext.scala.syntax.Type.FunctionType extends Type implements Serializable
-
Serialized Fields
-
value
Type_FunctionType value
-
-
-
Class hydra.ext.scala.syntax.Type.ImplicitFunction extends Type implements Serializable
-
Serialized Fields
-
value
Type_ImplicitFunction value
-
-
-
Class hydra.ext.scala.syntax.Type.Lambda extends Type implements Serializable
-
Serialized Fields
-
value
Type_Lambda value
-
-
-
Class hydra.ext.scala.syntax.Type.Macro extends Type implements Serializable
-
Serialized Fields
-
value
Type_Macro value
-
-
-
Class hydra.ext.scala.syntax.Type.Match extends Type implements Serializable
-
Serialized Fields
-
value
Type_Match value
-
-
-
Class hydra.ext.scala.syntax.Type.Method extends Type implements Serializable
-
Serialized Fields
-
value
Type_Method value
-
-
-
Class hydra.ext.scala.syntax.Type.Or extends Type implements Serializable
-
Serialized Fields
-
value
Type_Or value
-
-
-
Class hydra.ext.scala.syntax.Type.Placeholder extends Type implements Serializable
-
Serialized Fields
-
value
Type_Placeholder value
-
-
-
Class hydra.ext.scala.syntax.Type.PolyFunction extends Type implements Serializable
-
Serialized Fields
-
value
Type_PolyFunction value
-
-
-
Class hydra.ext.scala.syntax.Type.Ref extends Type implements Serializable
-
Serialized Fields
-
value
Type_Ref value
-
-
-
Class hydra.ext.scala.syntax.Type.Refine extends Type implements Serializable
-
Serialized Fields
-
value
Type_Refine value
-
-
-
Class hydra.ext.scala.syntax.Type.Repeated extends Type implements Serializable
-
Serialized Fields
-
value
Type_Repeated value
-
-
-
Class hydra.ext.scala.syntax.Type.Tuple extends Type implements Serializable
-
Serialized Fields
-
value
Type_Tuple value
-
-
-
Class hydra.ext.scala.syntax.Type.TypedParam extends Type implements Serializable
-
Serialized Fields
-
value
Type_TypedParam value
-
-
-
Class hydra.ext.scala.syntax.Type.Var extends Type implements Serializable
-
Serialized Fields
-
value
Type_Var value
-
-
-
Class hydra.ext.scala.syntax.Type.With extends Type implements Serializable
-
Serialized Fields
-
value
Type_With value
-
-
-
Class hydra.ext.scala.syntax.TypeBounds extends java.lang.Object implements Serializable
-
Class hydra.ext.scala.syntax.TypeCase extends java.lang.Object implements Serializable
-
-
Package hydra.graph
-
Class hydra.graph.Graph extends java.lang.Object implements Serializable
-
Serialized Fields
-
boundTerms
PersistentMap<Name,Term> boundTerms
The terms bound by all term variables in scope -
boundTypes
PersistentMap<Name,TypeScheme> boundTypes
The type schemes of all term variables in scope -
classConstraints
PersistentMap<Name,TypeVariableMetadata> classConstraints
A mutable map from type variable names to their accumulated class constraints. This is populated during type inference when operations requiring Eq or Ord are encountered. -
lambdaVariables
PersistentSet<Name> lambdaVariables
The set of term variables introduced by specifically by lambdas -
metadata
PersistentMap<Name,Term> metadata
Any additional metadata bound to term variables in scope -
primitives
PersistentMap<Name,Primitive> primitives
All primitive functions and constants by name -
schemaTypes
PersistentMap<Name,TypeScheme> schemaTypes
All schema types (type schemes) in scope -
typeVariables
PersistentSet<Name> typeVariables
The set of type variables introduced specifically by type lambdas
-
-
-
Class hydra.graph.Primitive extends java.lang.Object implements Serializable
-
Serialized Fields
-
implementation
java.util.function.Function<Context,java.util.function.Function<Graph,java.util.function.Function<ConsList<Term>,Either<InContext<Error_>,Term>>>> implementation
A concrete implementation of the primitive function. The Context and Graph parameters are needed by higher-order primitives (e.g. lists.map, lists.foldl, eithers.bind) which must evaluate function arguments via term reduction; the Graph provides variable and primitive bindings, while the Context supports tracing and error reporting. -
name
Name name
The unique name of the primitive function -
type
TypeScheme type
The type signature of the primitive function
-
-
-
Class hydra.graph.TermCoder extends java.lang.Object implements Serializable
-
Serialized Fields
-
decode
java.util.function.Function<Context,java.util.function.Function<A,Either<InContext<Error_>,Term>>> decode
A decode function from native values to terms -
encode
java.util.function.Function<Context,java.util.function.Function<Graph,java.util.function.Function<Term,Either<InContext<Error_>,A>>>> encode
An encode function from terms to native values -
type
Type type
The Hydra type of encoded terms
-
-
-
-
Package hydra.json.model
-
Class hydra.json.model.Value extends java.lang.Object implements Serializable
-
Class hydra.json.model.Value.Array extends Value implements Serializable
-
Class hydra.json.model.Value.Boolean_ extends Value implements Serializable
-
Serialized Fields
-
value
java.lang.Boolean value
-
-
-
Class hydra.json.model.Value.Null extends Value implements Serializable
-
Class hydra.json.model.Value.Number_ extends Value implements Serializable
-
Serialized Fields
-
value
java.math.BigDecimal value
-
-
-
Class hydra.json.model.Value.Object_ extends Value implements Serializable
-
Serialized Fields
-
value
PersistentMap<java.lang.String,Value> value
-
-
-
Class hydra.json.model.Value.String_ extends Value implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
-
Package hydra.module
-
Class hydra.module.Definition extends java.lang.Object implements Serializable
-
Class hydra.module.Definition.Term extends Definition implements Serializable
-
Serialized Fields
-
value
TermDefinition value
-
-
-
Class hydra.module.Definition.Type extends Definition implements Serializable
-
Serialized Fields
-
value
TypeDefinition value
-
-
-
Class hydra.module.FileExtension extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.module.Library extends java.lang.Object implements Serializable
-
Class hydra.module.Module extends java.lang.Object implements Serializable
-
Serialized Fields
-
definitions
ConsList<Definition> definitions
The definitions in this module -
description
Maybe<java.lang.String> description
An optional human-readable description of the module -
namespace
Namespace namespace
A common prefix for all element names in the module -
termDependencies
ConsList<Namespace> termDependencies
Any modules which the term expressions of this module directly depend upon -
typeDependencies
ConsList<Namespace> typeDependencies
Any modules which the type expressions of this module directly depend upon
-
-
-
Class hydra.module.Namespace extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.module.Namespaces extends java.lang.Object implements Serializable
-
Class hydra.module.QualifiedName extends java.lang.Object implements Serializable
-
Class hydra.module.TermDefinition extends java.lang.Object implements Serializable
-
Serialized Fields
-
name
Name name
The name of the term -
term
Term term
The term being defined -
type
Maybe<TypeScheme> type
The type scheme of the term, including any class constraints
-
-
-
Class hydra.module.TypeDefinition extends java.lang.Object implements Serializable
-
-
Package hydra.packaging
-
Class hydra.packaging.Package_ extends java.lang.Object implements Serializable
-
Serialized Fields
-
dependencies
ConsList<PackageName> dependencies
The packages which this package depends on -
description
Maybe<java.lang.String> description
An optional human-readable description of the package -
modules
ConsList<Module> modules
The modules in this package -
name
PackageName name
The name of the package
-
-
-
Class hydra.packaging.PackageName extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
-
Package hydra.parsing
-
Class hydra.parsing.ParseError extends java.lang.Object implements Serializable
-
Serialized Fields
-
message
java.lang.String message
An error message -
remainder
java.lang.String remainder
The remaining input at the point of failure
-
-
-
Class hydra.parsing.Parser extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.util.function.Function<java.lang.String,ParseResult<A>> value
-
-
-
Class hydra.parsing.ParseResult extends java.lang.Object implements Serializable
-
Class hydra.parsing.ParseResult.Failure extends ParseResult<A> implements Serializable
-
Serialized Fields
-
value
ParseError value
-
-
-
Class hydra.parsing.ParseResult.Success extends ParseResult<A> implements Serializable
-
Serialized Fields
-
value
ParseSuccess<A> value
-
-
-
Class hydra.parsing.ParseSuccess extends java.lang.Object implements Serializable
-
Serialized Fields
-
remainder
java.lang.String remainder
The remaining unparsed input -
value
A value
The parsed value
-
-
-
-
Package hydra.paths
-
Class hydra.paths.SubtermEdge extends java.lang.Object implements Serializable
-
Serialized Fields
-
path
SubtermPath path
The subterm path connecting source to target -
source
SubtermNode source
The source node of the edge -
target
SubtermNode target
The target node of the edge
-
-
-
Class hydra.paths.SubtermGraph extends java.lang.Object implements Serializable
-
Serialized Fields
-
edges
ConsList<SubtermEdge> edges
All edges in the graph -
nodes
ConsList<SubtermNode> nodes
All nodes in the graph
-
-
-
Class hydra.paths.SubtermNode extends java.lang.Object implements Serializable
-
Serialized Fields
-
id
java.lang.String id
A unique identifier for the node -
label
java.lang.String label
A human-readable label for the node -
name
Name name
The qualified name of the term
-
-
-
Class hydra.paths.SubtermPath extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<SubtermStep> value
-
-
-
Class hydra.paths.SubtermStep extends java.lang.Object implements Serializable
-
Class hydra.paths.SubtermStep.AnnotatedBody extends SubtermStep implements Serializable
-
Class hydra.paths.SubtermStep.ApplicationArgument extends SubtermStep implements Serializable
-
Class hydra.paths.SubtermStep.ApplicationFunction extends SubtermStep implements Serializable
-
Class hydra.paths.SubtermStep.InjectionTerm extends SubtermStep implements Serializable
-
Class hydra.paths.SubtermStep.LambdaBody extends SubtermStep implements Serializable
-
Class hydra.paths.SubtermStep.LetBinding extends SubtermStep implements Serializable
-
Serialized Fields
-
value
Name value
-
-
-
Class hydra.paths.SubtermStep.LetBody extends SubtermStep implements Serializable
-
Class hydra.paths.SubtermStep.ListElement extends SubtermStep implements Serializable
-
Serialized Fields
-
value
java.lang.Integer value
-
-
-
Class hydra.paths.SubtermStep.MapKey extends SubtermStep implements Serializable
-
Serialized Fields
-
value
java.lang.Integer value
-
-
-
Class hydra.paths.SubtermStep.MapValue extends SubtermStep implements Serializable
-
Serialized Fields
-
value
java.lang.Integer value
-
-
-
Class hydra.paths.SubtermStep.MaybeTerm extends SubtermStep implements Serializable
-
Class hydra.paths.SubtermStep.ProductTerm extends SubtermStep implements Serializable
-
Serialized Fields
-
value
java.lang.Integer value
-
-
-
Class hydra.paths.SubtermStep.RecordField extends SubtermStep implements Serializable
-
Serialized Fields
-
value
Name value
-
-
-
Class hydra.paths.SubtermStep.SetElement extends SubtermStep implements Serializable
-
Serialized Fields
-
value
java.lang.Integer value
-
-
-
Class hydra.paths.SubtermStep.SumTerm extends SubtermStep implements Serializable
-
Class hydra.paths.SubtermStep.TypeApplicationTerm extends SubtermStep implements Serializable
-
Class hydra.paths.SubtermStep.TypeLambdaBody extends SubtermStep implements Serializable
-
Class hydra.paths.SubtermStep.UnionCasesBranch extends SubtermStep implements Serializable
-
Serialized Fields
-
value
Name value
-
-
-
Class hydra.paths.SubtermStep.UnionCasesDefault extends SubtermStep implements Serializable
-
Class hydra.paths.SubtermStep.WrappedTerm extends SubtermStep implements Serializable
-
Class hydra.paths.SubtypeEdge extends java.lang.Object implements Serializable
-
Serialized Fields
-
path
SubtypePath path
The subtype path connecting source to target -
source
SubtypeNode source
The source node of the edge -
target
SubtypeNode target
The target node of the edge
-
-
-
Class hydra.paths.SubtypeGraph extends java.lang.Object implements Serializable
-
Serialized Fields
-
edges
ConsList<SubtypeEdge> edges
All edges in the graph -
nodes
ConsList<SubtypeNode> nodes
All nodes in the graph
-
-
-
Class hydra.paths.SubtypeNode extends java.lang.Object implements Serializable
-
Serialized Fields
-
id
java.lang.String id
A unique identifier for the node -
label
java.lang.String label
A human-readable label for the node -
name
Name name
The qualified name of the type
-
-
-
Class hydra.paths.SubtypePath extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<SubtypeStep> value
-
-
-
Class hydra.paths.SubtypeStep extends java.lang.Object implements Serializable
-
Class hydra.paths.SubtypeStep.AnnotatedBody extends SubtypeStep implements Serializable
-
Class hydra.paths.SubtypeStep.ApplicationArgument extends SubtypeStep implements Serializable
-
Class hydra.paths.SubtypeStep.ApplicationFunction extends SubtypeStep implements Serializable
-
Class hydra.paths.SubtypeStep.EitherLeft extends SubtypeStep implements Serializable
-
Class hydra.paths.SubtypeStep.EitherRight extends SubtypeStep implements Serializable
-
Class hydra.paths.SubtypeStep.ForallBody extends SubtypeStep implements Serializable
-
Class hydra.paths.SubtypeStep.FunctionCodomain extends SubtypeStep implements Serializable
-
Class hydra.paths.SubtypeStep.FunctionDomain extends SubtypeStep implements Serializable
-
Class hydra.paths.SubtypeStep.ListElement extends SubtypeStep implements Serializable
-
Class hydra.paths.SubtypeStep.MapKeys extends SubtypeStep implements Serializable
-
Class hydra.paths.SubtypeStep.MapValues extends SubtypeStep implements Serializable
-
Class hydra.paths.SubtypeStep.MaybeElement extends SubtypeStep implements Serializable
-
Class hydra.paths.SubtypeStep.PairFirst extends SubtypeStep implements Serializable
-
Class hydra.paths.SubtypeStep.PairSecond extends SubtypeStep implements Serializable
-
Class hydra.paths.SubtypeStep.RecordField extends SubtypeStep implements Serializable
-
Serialized Fields
-
value
Name value
-
-
-
Class hydra.paths.SubtypeStep.SetElement extends SubtypeStep implements Serializable
-
Class hydra.paths.SubtypeStep.UnionField extends SubtypeStep implements Serializable
-
Serialized Fields
-
value
Name value
-
-
-
Class hydra.paths.SubtypeStep.WrappedType extends SubtypeStep implements Serializable
-
-
Package hydra.pg.graphson.syntax
-
Class hydra.pg.graphson.syntax.AdjacentEdge extends java.lang.Object implements Serializable
-
Serialized Fields
-
id
Value id
-
properties
PersistentMap<PropertyKey,Value> properties
-
vertexId
Value vertexId
-
-
-
Class hydra.pg.graphson.syntax.BigDecimalValue extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.pg.graphson.syntax.CompositeTypedValue extends java.lang.Object implements Serializable
-
Class hydra.pg.graphson.syntax.DateTime extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.pg.graphson.syntax.DoubleValue extends java.lang.Object implements Serializable
-
Class hydra.pg.graphson.syntax.DoubleValue.Finite extends DoubleValue implements Serializable
-
Serialized Fields
-
value
java.lang.Double value
-
-
-
Class hydra.pg.graphson.syntax.DoubleValue.Infinity extends DoubleValue implements Serializable
-
Class hydra.pg.graphson.syntax.DoubleValue.NegativeInfinity extends DoubleValue implements Serializable
-
Class hydra.pg.graphson.syntax.DoubleValue.NotANumber extends DoubleValue implements Serializable
-
Class hydra.pg.graphson.syntax.Duration extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.pg.graphson.syntax.EdgeLabel extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.pg.graphson.syntax.FloatValue extends java.lang.Object implements Serializable
-
Class hydra.pg.graphson.syntax.FloatValue.Finite extends FloatValue implements Serializable
-
Serialized Fields
-
value
java.lang.Float value
-
-
-
Class hydra.pg.graphson.syntax.FloatValue.Infinity extends FloatValue implements Serializable
-
Class hydra.pg.graphson.syntax.FloatValue.NegativeInfinity extends FloatValue implements Serializable
-
Class hydra.pg.graphson.syntax.FloatValue.NotANumber extends FloatValue implements Serializable
-
Class hydra.pg.graphson.syntax.Map extends java.lang.Object implements Serializable
-
Class hydra.pg.graphson.syntax.PrimitiveTypedValue extends java.lang.Object implements Serializable
-
Serialized Fields
-
type
TypeName type
-
value
java.lang.String value
-
-
-
Class hydra.pg.graphson.syntax.PropertyKey extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.pg.graphson.syntax.TypeName extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.pg.graphson.syntax.Uuid extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.pg.graphson.syntax.Value extends java.lang.Object implements Serializable
-
Class hydra.pg.graphson.syntax.Value.BigDecimal extends Value implements Serializable
-
Serialized Fields
-
value
BigDecimalValue value
-
-
-
Class hydra.pg.graphson.syntax.Value.BigInteger extends Value implements Serializable
-
Serialized Fields
-
value
java.math.BigInteger value
-
-
-
Class hydra.pg.graphson.syntax.Value.Binary extends Value implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.pg.graphson.syntax.Value.Boolean_ extends Value implements Serializable
-
Serialized Fields
-
value
java.lang.Boolean value
-
-
-
Class hydra.pg.graphson.syntax.Value.Byte_ extends Value implements Serializable
-
Serialized Fields
-
value
java.lang.Short value
-
-
-
Class hydra.pg.graphson.syntax.Value.Char extends Value implements Serializable
-
Serialized Fields
-
value
java.lang.Long value
-
-
-
Class hydra.pg.graphson.syntax.Value.Composite extends Value implements Serializable
-
Serialized Fields
-
value
CompositeTypedValue value
-
-
-
Class hydra.pg.graphson.syntax.Value.DateTime extends Value implements Serializable
-
Serialized Fields
-
value
DateTime value
-
-
-
Class hydra.pg.graphson.syntax.Value.Double_ extends Value implements Serializable
-
Serialized Fields
-
value
DoubleValue value
-
-
-
Class hydra.pg.graphson.syntax.Value.Duration extends Value implements Serializable
-
Serialized Fields
-
value
Duration value
-
-
-
Class hydra.pg.graphson.syntax.Value.Float_ extends Value implements Serializable
-
Serialized Fields
-
value
FloatValue value
-
-
-
Class hydra.pg.graphson.syntax.Value.Integer_ extends Value implements Serializable
-
Serialized Fields
-
value
java.lang.Integer value
-
-
-
Class hydra.pg.graphson.syntax.Value.List extends Value implements Serializable
-
Class hydra.pg.graphson.syntax.Value.Long_ extends Value implements Serializable
-
Serialized Fields
-
value
java.lang.Long value
-
-
-
Class hydra.pg.graphson.syntax.Value.Map extends Value implements Serializable
-
Serialized Fields
-
value
Map value
-
-
-
Class hydra.pg.graphson.syntax.Value.Null extends Value implements Serializable
-
Class hydra.pg.graphson.syntax.Value.Primitive extends Value implements Serializable
-
Serialized Fields
-
value
PrimitiveTypedValue value
-
-
-
Class hydra.pg.graphson.syntax.Value.Set extends Value implements Serializable
-
Class hydra.pg.graphson.syntax.Value.Short_ extends Value implements Serializable
-
Serialized Fields
-
value
java.lang.Short value
-
-
-
Class hydra.pg.graphson.syntax.Value.String_ extends Value implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.pg.graphson.syntax.Value.Uuid extends Value implements Serializable
-
Serialized Fields
-
value
Uuid value
-
-
-
Class hydra.pg.graphson.syntax.ValuePair extends java.lang.Object implements Serializable
-
Class hydra.pg.graphson.syntax.Vertex extends java.lang.Object implements Serializable
-
Serialized Fields
-
id
Value id
-
inEdges
PersistentMap<EdgeLabel,ConsList<AdjacentEdge>> inEdges
-
label
Maybe<VertexLabel> label
-
outEdges
PersistentMap<EdgeLabel,ConsList<AdjacentEdge>> outEdges
-
properties
PersistentMap<PropertyKey,ConsList<VertexPropertyValue>> properties
-
-
-
Class hydra.pg.graphson.syntax.VertexLabel extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.pg.graphson.syntax.VertexPropertyValue extends java.lang.Object implements Serializable
-
-
Package hydra.pg.mapping
-
Class hydra.pg.mapping.AnnotationSchema extends java.lang.Object implements Serializable
-
Serialized Fields
-
edgeId
java.lang.String edgeId
-
edgeLabel
java.lang.String edgeLabel
-
ignore
java.lang.String ignore
-
inEdge
java.lang.String inEdge
-
inEdgeLabel
java.lang.String inEdgeLabel
-
inVertex
java.lang.String inVertex
-
inVertexLabel
java.lang.String inVertexLabel
-
outEdge
java.lang.String outEdge
-
outEdgeLabel
java.lang.String outEdgeLabel
-
outVertex
java.lang.String outVertex
-
outVertexLabel
java.lang.String outVertexLabel
-
propertyKey
java.lang.String propertyKey
-
propertyValue
java.lang.String propertyValue
-
vertexId
java.lang.String vertexId
-
vertexLabel
java.lang.String vertexLabel
-
-
-
Class hydra.pg.mapping.EdgeSpec extends java.lang.Object implements Serializable
-
Serialized Fields
-
id
ValueSpec id
A specification of the id of each target edge -
in
ValueSpec in
A specification of the in-vertex reference of each target edge -
label
EdgeLabel label
The label of the target edges, which must conform to the edge type associated with that label. -
out
ValueSpec out
A specification of the out-vertex reference of each target edge -
properties
ConsList<PropertySpec> properties
Zero or more property specifications for each target edge
-
-
-
Class hydra.pg.mapping.ElementSpec extends java.lang.Object implements Serializable
-
Class hydra.pg.mapping.ElementSpec.Edge extends ElementSpec implements Serializable
-
Serialized Fields
-
value
EdgeSpec value
-
-
-
Class hydra.pg.mapping.ElementSpec.Vertex extends ElementSpec implements Serializable
-
Serialized Fields
-
value
VertexSpec value
-
-
-
Class hydra.pg.mapping.PropertySpec extends java.lang.Object implements Serializable
-
Serialized Fields
-
key
PropertyKey key
The key of the target properties -
value
ValueSpec value
A specification of the value of each target property, which must conform to the type associated with the property key
-
-
-
Class hydra.pg.mapping.Schema extends java.lang.Object implements Serializable
-
Serialized Fields
-
annotations
AnnotationSchema annotations
-
defaultEdgeId
V defaultEdgeId
-
defaultVertexId
V defaultVertexId
-
edgeIds
Coder<Term,V> edgeIds
-
edgeIdTypes
Coder<Type,T> edgeIdTypes
-
propertyTypes
Coder<Type,T> propertyTypes
-
propertyValues
Coder<Term,V> propertyValues
-
vertexIds
Coder<Term,V> vertexIds
-
vertexIdTypes
Coder<Type,T> vertexIdTypes
-
-
-
Class hydra.pg.mapping.ValueSpec extends java.lang.Object implements Serializable
-
Class hydra.pg.mapping.ValueSpec.Pattern extends ValueSpec implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.pg.mapping.ValueSpec.Value extends ValueSpec implements Serializable
-
Class hydra.pg.mapping.VertexSpec extends java.lang.Object implements Serializable
-
Serialized Fields
-
id
ValueSpec id
A specification of the id of each target vertex -
label
VertexLabel label
The label of the target vertices, which must conform to the vertex type associated with that label. -
properties
ConsList<PropertySpec> properties
Zero or more property specifications for each target vertex
-
-
-
-
Package hydra.pg.model
-
Class hydra.pg.model.AdjacentEdge extends java.lang.Object implements Serializable
-
Serialized Fields
-
id
V id
The unique identifier of the edge -
label
EdgeLabel label
The label of the edge -
properties
PersistentMap<PropertyKey,V> properties
A key/value map of edge properties -
vertex
V vertex
The id of the other vertex adjacent to the edge
-
-
-
Class hydra.pg.model.Direction extends java.lang.Object implements Serializable
-
Class hydra.pg.model.Direction.Both extends Direction implements Serializable
-
Class hydra.pg.model.Direction.In extends Direction implements Serializable
-
Class hydra.pg.model.Direction.Out extends Direction implements Serializable
-
Class hydra.pg.model.Direction.Undirected extends Direction implements Serializable
-
Class hydra.pg.model.Edge extends java.lang.Object implements Serializable
-
Serialized Fields
-
id
V id
The unique identifier of the edge -
in
V in
The id of the in-vertex (head) of the edge -
label
EdgeLabel label
The label of the edge -
out
V out
The id of the out-vertex (tail) of the edge -
properties
PersistentMap<PropertyKey,V> properties
A key/value map of edge properties
-
-
-
Class hydra.pg.model.EdgeLabel extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.pg.model.EdgeType extends java.lang.Object implements Serializable
-
Serialized Fields
-
id
T id
The type of the id of any edge of this edge type -
in
VertexLabel in
The label of the in-vertex (head) of any edge of this edge type -
label
EdgeLabel label
The label of any edge of this edge type -
out
VertexLabel out
The label of the out-vertex (tail) of any edge of this edge type -
properties
ConsList<PropertyType<T>> properties
A list of property types. The types are ordered for the sake of applications in which property order is significant.
-
-
-
Class hydra.pg.model.Element extends java.lang.Object implements Serializable
-
Class hydra.pg.model.Element.Edge extends Element<V> implements Serializable
-
Class hydra.pg.model.Element.Vertex extends Element<V> implements Serializable
-
Class hydra.pg.model.ElementKind extends java.lang.Object implements Serializable
-
Class hydra.pg.model.ElementKind.Edge extends ElementKind implements Serializable
-
Class hydra.pg.model.ElementKind.Vertex extends ElementKind implements Serializable
-
Class hydra.pg.model.ElementTree extends java.lang.Object implements Serializable
-
Serialized Fields
-
dependencies
ConsList<ElementTree<V>> dependencies
-
self
Element<V> self
-
-
-
Class hydra.pg.model.ElementType extends java.lang.Object implements Serializable
-
Class hydra.pg.model.ElementType.Edge extends ElementType<T> implements Serializable
-
Class hydra.pg.model.ElementType.Vertex extends ElementType<T> implements Serializable
-
Serialized Fields
-
value
VertexType<T> value
-
-
-
Class hydra.pg.model.ElementTypeTree extends java.lang.Object implements Serializable
-
Serialized Fields
-
dependencies
ConsList<ElementTypeTree<T>> dependencies
-
self
ElementType<T> self
-
-
-
Class hydra.pg.model.Graph extends java.lang.Object implements Serializable
-
Serialized Fields
-
edges
PersistentMap<V,Edge<V>> edges
-
vertices
PersistentMap<V,Vertex<V>> vertices
-
-
-
Class hydra.pg.model.GraphSchema extends java.lang.Object implements Serializable
-
Serialized Fields
-
edges
PersistentMap<EdgeLabel,EdgeType<T>> edges
A unique edge type for each edge label which may occur in a graph -
vertices
PersistentMap<VertexLabel,VertexType<T>> vertices
A unique vertex type for each vertex label which may occur in a graph
-
-
-
Class hydra.pg.model.Label extends java.lang.Object implements Serializable
-
Class hydra.pg.model.Label.Edge extends Label implements Serializable
-
Serialized Fields
-
value
EdgeLabel value
-
-
-
Class hydra.pg.model.Label.Vertex extends Label implements Serializable
-
Serialized Fields
-
value
VertexLabel value
-
-
-
Class hydra.pg.model.LazyGraph extends java.lang.Object implements Serializable
-
Class hydra.pg.model.Property extends java.lang.Object implements Serializable
-
Serialized Fields
-
key
PropertyKey key
They key of the property -
value
V value
The value of the property
-
-
-
Class hydra.pg.model.PropertyKey extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.pg.model.PropertyType extends java.lang.Object implements Serializable
-
Serialized Fields
-
key
PropertyKey key
A property's key -
required
java.lang.Boolean required
Whether the property is required; values may be omitted from a property map otherwise -
value
T value
The type of a property's value
-
-
-
Class hydra.pg.model.Vertex extends java.lang.Object implements Serializable
-
Serialized Fields
-
id
V id
The unique identifier of the vertex -
label
VertexLabel label
The label of the vertex -
properties
PersistentMap<PropertyKey,V> properties
A key/value map of vertex properties
-
-
-
Class hydra.pg.model.VertexLabel extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.pg.model.VertexType extends java.lang.Object implements Serializable
-
Serialized Fields
-
id
T id
The type of the id of any vertex of this vertex type -
label
VertexLabel label
The label of any vertex of this vertex type -
properties
ConsList<PropertyType<T>> properties
A list of property types. The types are ordered for the sake of applications in which property order is significant.
-
-
-
Class hydra.pg.model.VertexWithAdjacentEdges extends java.lang.Object implements Serializable
-
Serialized Fields
-
ins
ConsList<AdjacentEdge<V>> ins
An adjacency list of edges in which the focus vertex is the head (in-vertex) of the edge -
outs
ConsList<AdjacentEdge<V>> outs
An adjacency list of edges in which the focus vertex is the tail (out-vertex) of the edge -
vertex
Vertex<V> vertex
The focus vertex
-
-
-
-
Package hydra.pg.query
-
Class hydra.pg.query.AggregationQuery extends java.lang.Object implements Serializable
-
Class hydra.pg.query.AggregationQuery.Count extends AggregationQuery implements Serializable
-
Class hydra.pg.query.ApplicationQuery extends java.lang.Object implements Serializable
-
Class hydra.pg.query.AssociativeExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
operands
ConsList<Expression> operands
-
operator
BinaryOperator operator
-
-
-
Class hydra.pg.query.BinaryBooleanOperator extends java.lang.Object implements Serializable
-
Class hydra.pg.query.BinaryBooleanOperator.And extends BinaryBooleanOperator implements Serializable
-
Class hydra.pg.query.BinaryBooleanOperator.Or extends BinaryBooleanOperator implements Serializable
-
Class hydra.pg.query.BinaryBooleanOperator.Xor extends BinaryBooleanOperator implements Serializable
-
Class hydra.pg.query.BinaryExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
left
Expression left
-
operator
BinaryOperator operator
-
right
Expression right
-
-
-
Class hydra.pg.query.BinaryOperator extends java.lang.Object implements Serializable
-
Class hydra.pg.query.BinaryOperator.Boolean_ extends BinaryOperator implements Serializable
-
Serialized Fields
-
value
BinaryBooleanOperator value
-
-
-
Class hydra.pg.query.BinaryOperator.Comparison extends BinaryOperator implements Serializable
-
Serialized Fields
-
value
ComparisonOperator value
-
-
-
Class hydra.pg.query.BinaryOperator.Power extends BinaryOperator implements Serializable
-
Class hydra.pg.query.Binding extends java.lang.Object implements Serializable
-
Class hydra.pg.query.ComparisonOperator extends java.lang.Object implements Serializable
-
Class hydra.pg.query.ComparisonOperator.Eq extends ComparisonOperator implements Serializable
-
Class hydra.pg.query.ComparisonOperator.Gt extends ComparisonOperator implements Serializable
-
Class hydra.pg.query.ComparisonOperator.Gte extends ComparisonOperator implements Serializable
-
Class hydra.pg.query.ComparisonOperator.Lt extends ComparisonOperator implements Serializable
-
Class hydra.pg.query.ComparisonOperator.Lte extends ComparisonOperator implements Serializable
-
Class hydra.pg.query.ComparisonOperator.Neq extends ComparisonOperator implements Serializable
-
Class hydra.pg.query.EdgeProjectionPattern extends java.lang.Object implements Serializable
-
Serialized Fields
-
direction
Direction direction
-
label
Maybe<EdgeLabel> label
-
properties
ConsList<PropertyPattern> properties
-
vertex
Maybe<VertexPattern> vertex
-
-
-
Class hydra.pg.query.Expression extends java.lang.Object implements Serializable
-
Class hydra.pg.query.Expression.Associative extends Expression implements Serializable
-
Serialized Fields
-
value
AssociativeExpression value
-
-
-
Class hydra.pg.query.Expression.Binary extends Expression implements Serializable
-
Serialized Fields
-
value
BinaryExpression value
-
-
-
Class hydra.pg.query.Expression.Property extends Expression implements Serializable
-
Serialized Fields
-
value
PropertyProjection value
-
-
-
Class hydra.pg.query.Expression.Unary extends Expression implements Serializable
-
Serialized Fields
-
value
UnaryExpression value
-
-
-
Class hydra.pg.query.Expression.Variable extends Expression implements Serializable
-
Serialized Fields
-
value
Variable value
-
-
-
Class hydra.pg.query.Expression.Vertex extends Expression implements Serializable
-
Serialized Fields
-
value
VertexPattern value
-
-
-
Class hydra.pg.query.LetQuery extends java.lang.Object implements Serializable
-
Class hydra.pg.query.MatchQuery extends java.lang.Object implements Serializable
-
Serialized Fields
-
optional
java.lang.Boolean optional
-
pattern
ConsList<Projection> pattern
-
where
Maybe<Expression> where
-
-
-
Class hydra.pg.query.Projection extends java.lang.Object implements Serializable
-
Serialized Fields
-
as
Maybe<Variable> as
-
value
Expression value
-
-
-
Class hydra.pg.query.Projections extends java.lang.Object implements Serializable
-
Serialized Fields
-
all
java.lang.Boolean all
-
explicit
ConsList<Projection> explicit
-
-
-
Class hydra.pg.query.PropertyPattern extends java.lang.Object implements Serializable
-
Serialized Fields
-
key
PropertyKey key
-
value
PropertyValuePattern value
-
-
-
Class hydra.pg.query.PropertyProjection extends java.lang.Object implements Serializable
-
Serialized Fields
-
base
Expression base
-
key
PropertyKey key
-
-
-
Class hydra.pg.query.PropertyValue extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.pg.query.PropertyValuePattern extends java.lang.Object implements Serializable
-
Class hydra.pg.query.PropertyValuePattern.Value extends PropertyValuePattern implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.pg.query.PropertyValuePattern.Variable extends PropertyValuePattern implements Serializable
-
Serialized Fields
-
value
PropertyKey value
-
-
-
Class hydra.pg.query.Query extends java.lang.Object implements Serializable
-
Class hydra.pg.query.Query.Aggregate extends Query implements Serializable
-
Serialized Fields
-
value
AggregationQuery value
-
-
-
Class hydra.pg.query.Query.Application extends Query implements Serializable
-
Serialized Fields
-
value
ApplicationQuery value
-
-
-
Class hydra.pg.query.Query.LetQuery extends Query implements Serializable
-
Serialized Fields
-
value
LetQuery value
-
-
-
Class hydra.pg.query.Query.Match extends Query implements Serializable
-
Serialized Fields
-
value
MatchQuery value
-
-
-
Class hydra.pg.query.Query.Select extends Query implements Serializable
-
Serialized Fields
-
value
SelectQuery value
-
-
-
Class hydra.pg.query.Query.Value extends Query implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.pg.query.SelectQuery extends java.lang.Object implements Serializable
-
Serialized Fields
-
distinct
java.lang.Boolean distinct
-
projection
Projections projection
-
-
-
Class hydra.pg.query.UnaryExpression extends java.lang.Object implements Serializable
-
Serialized Fields
-
operand
Expression operand
-
operator
UnaryOperator operator
-
-
-
Class hydra.pg.query.UnaryOperator extends java.lang.Object implements Serializable
-
Class hydra.pg.query.UnaryOperator.Negate extends UnaryOperator implements Serializable
-
Class hydra.pg.query.Variable extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.pg.query.VertexPattern extends java.lang.Object implements Serializable
-
Serialized Fields
-
edges
ConsList<EdgeProjectionPattern> edges
-
label
Maybe<VertexLabel> label
-
properties
ConsList<PropertyPattern> properties
-
variable
Maybe<Variable> variable
-
-
-
-
Package hydra.pg.rdf.environment
-
Class hydra.pg.rdf.environment.PgRdfEnvironment extends java.lang.Object implements Serializable
-
Serialized Fields
-
encodeEdgeId
java.util.function.Function<V,Iri> encodeEdgeId
A function which encodes an edge id as an RDF IRI -
encodeEdgeLabel
java.util.function.Function<EdgeLabel,Iri> encodeEdgeLabel
A function which encodes an edge label as an RDF IRI -
encodePropertyKey
java.util.function.Function<PropertyKey,Iri> encodePropertyKey
A function which encodes a property key as an RDF IRI -
encodePropertyValue
java.util.function.Function<V,Literal> encodePropertyValue
A function which encodes a property value as an RDF literal -
encodeVertexId
java.util.function.Function<V,Iri> encodeVertexId
A function which encodes a vertex id as an RDF IRI -
encodeVertexLabel
java.util.function.Function<VertexLabel,Iri> encodeVertexLabel
A function which encodes a vertex label as an RDF IRI
-
-
-
-
Package hydra.phantoms
-
Class hydra.phantoms.TBinding extends java.lang.Object implements Serializable
-
Class hydra.phantoms.TTerm extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
Term value
-
-
-
-
Package hydra.query
-
Class hydra.query.ComparisonConstraint extends java.lang.Object implements Serializable
-
Class hydra.query.ComparisonConstraint.Equal extends ComparisonConstraint implements Serializable
-
Class hydra.query.ComparisonConstraint.GreaterThan extends ComparisonConstraint implements Serializable
-
Class hydra.query.ComparisonConstraint.GreaterThanOrEqual extends ComparisonConstraint implements Serializable
-
Class hydra.query.ComparisonConstraint.LessThan extends ComparisonConstraint implements Serializable
-
Class hydra.query.ComparisonConstraint.LessThanOrEqual extends ComparisonConstraint implements Serializable
-
Class hydra.query.ComparisonConstraint.NotEqual extends ComparisonConstraint implements Serializable
-
Class hydra.query.Edge extends java.lang.Object implements Serializable
-
Serialized Fields
-
-
Class hydra.query.GraphPattern extends java.lang.Object implements Serializable
-
Class hydra.query.Node extends java.lang.Object implements Serializable
-
Class hydra.query.Node.Term extends Node implements Serializable
-
Serialized Fields
-
value
Term value
-
-
-
Class hydra.query.Node.Variable extends Node implements Serializable
-
Serialized Fields
-
value
Variable value
-
-
-
Class hydra.query.Node.Wildcard extends Node implements Serializable
-
Class hydra.query.Path extends java.lang.Object implements Serializable
-
Class hydra.query.Path.Inverse extends Path implements Serializable
-
Serialized Fields
-
value
Path value
-
-
-
Class hydra.query.Path.Regex extends Path implements Serializable
-
Serialized Fields
-
value
RegexSequence value
-
-
-
Class hydra.query.Path.Step extends Path implements Serializable
-
Serialized Fields
-
value
Step value
-
-
-
Class hydra.query.PathEquation extends java.lang.Object implements Serializable
-
Class hydra.query.Pattern extends java.lang.Object implements Serializable
-
Class hydra.query.Pattern.Conjunction extends Pattern implements Serializable
-
Class hydra.query.Pattern.Disjunction extends Pattern implements Serializable
-
Class hydra.query.Pattern.Graph extends Pattern implements Serializable
-
Serialized Fields
-
value
GraphPattern value
-
-
-
Class hydra.query.Pattern.Negation extends Pattern implements Serializable
-
Serialized Fields
-
value
Pattern value
-
-
-
Class hydra.query.Pattern.Triple extends Pattern implements Serializable
-
Serialized Fields
-
value
TriplePattern value
-
-
-
Class hydra.query.PatternImplication extends java.lang.Object implements Serializable
-
Class hydra.query.Query extends java.lang.Object implements Serializable
-
Class hydra.query.Range extends java.lang.Object implements Serializable
-
Serialized Fields
-
max
java.lang.Integer max
The maximum value (inclusive) -
min
java.lang.Integer min
The minimum value (inclusive)
-
-
-
Class hydra.query.RegexQuantifier extends java.lang.Object implements Serializable
-
Class hydra.query.RegexQuantifier.AtLeast extends RegexQuantifier implements Serializable
-
Serialized Fields
-
value
java.lang.Integer value
-
-
-
Class hydra.query.RegexQuantifier.Exactly extends RegexQuantifier implements Serializable
-
Serialized Fields
-
value
java.lang.Integer value
-
-
-
Class hydra.query.RegexQuantifier.One extends RegexQuantifier implements Serializable
-
Class hydra.query.RegexQuantifier.OneOrMore extends RegexQuantifier implements Serializable
-
Class hydra.query.RegexQuantifier.Range extends RegexQuantifier implements Serializable
-
Serialized Fields
-
value
Range value
-
-
-
Class hydra.query.RegexQuantifier.ZeroOrMore extends RegexQuantifier implements Serializable
-
Class hydra.query.RegexQuantifier.ZeroOrOne extends RegexQuantifier implements Serializable
-
Class hydra.query.RegexSequence extends java.lang.Object implements Serializable
-
Serialized Fields
-
path
Path path
The path to which the quantifier applies -
quantifier
RegexQuantifier quantifier
The quantifier
-
-
-
Class hydra.query.Step extends java.lang.Object implements Serializable
-
Class hydra.query.Step.Compare extends Step implements Serializable
-
Serialized Fields
-
value
ComparisonConstraint value
-
-
-
Class hydra.query.Step.Edge extends Step implements Serializable
-
Serialized Fields
-
value
Edge value
-
-
-
Class hydra.query.Step.Project extends Step implements Serializable
-
Serialized Fields
-
value
Projection value
-
-
-
Class hydra.query.TriplePattern extends java.lang.Object implements Serializable
-
Class hydra.query.Variable extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
-
Package hydra.relational
-
Class hydra.relational.ColumnName extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.relational.ColumnSchema extends java.lang.Object implements Serializable
-
Serialized Fields
-
domain
T domain
The domain (type) of the column -
name
ColumnName name
A unique name for the column
-
-
-
Class hydra.relational.ForeignKey extends java.lang.Object implements Serializable
-
Serialized Fields
-
foreignRelation
RelationName foreignRelation
The name of the target relation -
keys
PersistentMap<ColumnName,ColumnName> keys
The mapping of source column names to target column names. The target column names must together make up the primary key of the target relation.
-
-
-
Class hydra.relational.PrimaryKey extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<ColumnName> value
-
-
-
Class hydra.relational.Relation extends java.lang.Object implements Serializable
-
Class hydra.relational.RelationName extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.relational.RelationSchema extends java.lang.Object implements Serializable
-
Serialized Fields
-
columns
ConsList<ColumnSchema<T>> columns
A list of column specifications -
foreignKeys
ConsList<ForeignKey> foreignKeys
Any number of foreign keys, each of which must be valid for both this relation and the target relation -
name
RelationName name
A unique name for the relation -
primaryKeys
ConsList<PrimaryKey> primaryKeys
Any number of primary keys for the relation, each of which must be valid for this relation
-
-
-
Class hydra.relational.Relationship extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
PersistentSet<PersistentMap<ColumnName,V>> value
-
-
-
Class hydra.relational.Row extends java.lang.Object implements Serializable
-
-
Package hydra.tabular
-
Class hydra.tabular.ColumnType extends java.lang.Object implements Serializable
-
Serialized Fields
-
name
ColumnName name
-
type
Type type
-
-
-
Class hydra.tabular.DataRow extends java.lang.Object implements Serializable
-
Class hydra.tabular.HeaderRow extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
ConsList<java.lang.String> value
-
-
-
Class hydra.tabular.Table extends java.lang.Object implements Serializable
-
Class hydra.tabular.TableType extends java.lang.Object implements Serializable
-
Serialized Fields
-
columns
ConsList<ColumnType> columns
-
name
RelationName name
-
-
-
-
Package hydra.testing
-
Class hydra.testing.AlphaConversionTestCase extends java.lang.Object implements Serializable
-
Class hydra.testing.CaseConversionTestCase extends java.lang.Object implements Serializable
-
Serialized Fields
-
fromConvention
CaseConvention fromConvention
The source case convention -
fromString
java.lang.String fromString
The input string -
toConvention
CaseConvention toConvention
The target case convention -
toString
java.lang.String toString
The expected output string
-
-
-
Class hydra.testing.DeannotateTermTestCase extends java.lang.Object implements Serializable
-
Class hydra.testing.DeannotateTypeTestCase extends java.lang.Object implements Serializable
-
Class hydra.testing.DelegatedEvaluationTestCase extends java.lang.Object implements Serializable
-
Class hydra.testing.EtaExpansionTestCase extends java.lang.Object implements Serializable
-
Class hydra.testing.EvaluationStyle extends java.lang.Object implements Serializable
-
Class hydra.testing.EvaluationStyle.Eager extends EvaluationStyle implements Serializable
-
Class hydra.testing.EvaluationStyle.Lazy extends EvaluationStyle implements Serializable
-
Class hydra.testing.EvaluationTestCase extends java.lang.Object implements Serializable
-
Serialized Fields
-
evaluationStyle
EvaluationStyle evaluationStyle
The evaluation style (eager or lazy) -
input
Term input
The term to evaluate -
output
Term output
The expected result
-
-
-
Class hydra.testing.FlattenLetTermsTestCase extends java.lang.Object implements Serializable
-
Class hydra.testing.FoldOperation extends java.lang.Object implements Serializable
-
Class hydra.testing.FoldOperation.CollectLabels extends FoldOperation implements Serializable
-
Class hydra.testing.FoldOperation.CollectListLengths extends FoldOperation implements Serializable
-
Class hydra.testing.FoldOperation.SumInt32Literals extends FoldOperation implements Serializable
-
Class hydra.testing.FoldOverTermTestCase extends java.lang.Object implements Serializable
-
Serialized Fields
-
input
Term input
The term to fold over -
operation
FoldOperation operation
The fold operation to apply -
output
Term output
The expected result of the fold -
traversalOrder
TraversalOrder traversalOrder
The traversal order (pre or post)
-
-
-
Class hydra.testing.FreeVariablesTestCase extends java.lang.Object implements Serializable
-
Serialized Fields
-
input
Term input
The term to analyze -
output
PersistentSet<Name> output
The expected set of free variable names
-
-
-
Class hydra.testing.HoistCaseStatementsTestCase extends java.lang.Object implements Serializable
-
Class hydra.testing.HoistLetBindingsTestCase extends java.lang.Object implements Serializable
-
Class hydra.testing.HoistPolymorphicLetBindingsTestCase extends java.lang.Object implements Serializable
-
Class hydra.testing.HoistPredicate extends java.lang.Object implements Serializable
-
Class hydra.testing.HoistPredicate.Applications extends HoistPredicate implements Serializable
-
Class hydra.testing.HoistPredicate.CaseStatements extends HoistPredicate implements Serializable
-
Class hydra.testing.HoistPredicate.Lists extends HoistPredicate implements Serializable
-
Class hydra.testing.HoistPredicate.Nothing extends HoistPredicate implements Serializable
-
Class hydra.testing.HoistSubtermsTestCase extends java.lang.Object implements Serializable
-
Serialized Fields
-
input
Term input
The input term (must contain a let expression for hoisting to occur) -
output
Term output
The expected output term with hoisted subterms as new bindings -
predicate
HoistPredicate predicate
The predicate that determines which subterms to hoist
-
-
-
Class hydra.testing.InferenceFailureTestCase extends java.lang.Object implements Serializable
-
Serialized Fields
-
input
Term input
The term for which inference should fail
-
-
-
Class hydra.testing.InferenceTestCase extends java.lang.Object implements Serializable
-
Serialized Fields
-
input
Term input
The term to infer -
output
TypeScheme output
The expected type scheme
-
-
-
Class hydra.testing.JoinTypesTestCase extends java.lang.Object implements Serializable
-
Serialized Fields
-
expected
Either<java.lang.Void,ConsList<TypeConstraint>> expected
The expected result: Left for failure, Right for constraints -
left
Type left
The left type to join -
right
Type right
The right type to join
-
-
-
Class hydra.testing.JsonDecodeTestCase extends java.lang.Object implements Serializable
-
Class hydra.testing.JsonEncodeTestCase extends java.lang.Object implements Serializable
-
Class hydra.testing.JsonRoundtripTestCase extends java.lang.Object implements Serializable
-
Class hydra.testing.LiftLambdaAboveLetTestCase extends java.lang.Object implements Serializable
-
Class hydra.testing.NormalizeTypeVariablesTestCase extends java.lang.Object implements Serializable
-
Class hydra.testing.ParserTestCase extends java.lang.Object implements Serializable
-
Serialized Fields
-
input
java.lang.String input
The input string to parse -
output
ParseResult<A> output
The expected parse result
-
-
-
Class hydra.testing.RewriteTermTestCase extends java.lang.Object implements Serializable
-
Serialized Fields
-
input
Term input
The term to rewrite -
output
Term output
The expected rewritten term -
rewriter
TermRewriter rewriter
The rewriter to apply
-
-
-
Class hydra.testing.RewriteTypeTestCase extends java.lang.Object implements Serializable
-
Serialized Fields
-
input
Type input
The type to rewrite -
output
Type output
The expected rewritten type -
rewriter
TypeRewriter rewriter
The rewriter to apply
-
-
-
Class hydra.testing.SerializationTestCase extends java.lang.Object implements Serializable
-
Serialized Fields
-
input
Expr input
The AST expression to serialize -
output
java.lang.String output
The expected serialized string
-
-
-
Class hydra.testing.SimplifyTermTestCase extends java.lang.Object implements Serializable
-
Class hydra.testing.SubstInTypeTestCase extends java.lang.Object implements Serializable
-
Class hydra.testing.Tag extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
java.lang.String value
-
-
-
Class hydra.testing.TermRewriter extends java.lang.Object implements Serializable
-
Class hydra.testing.TermRewriter.ReplaceFooWithBar extends TermRewriter implements Serializable
-
Class hydra.testing.TermRewriter.ReplaceInt32WithInt64 extends TermRewriter implements Serializable
-
Class hydra.testing.TestCase extends java.lang.Object implements Serializable
-
Class hydra.testing.TestCase.AlphaConversion extends TestCase implements Serializable
-
Serialized Fields
-
value
AlphaConversionTestCase value
-
-
-
Class hydra.testing.TestCase.CaseConversion extends TestCase implements Serializable
-
Serialized Fields
-
value
CaseConversionTestCase value
-
-
-
Class hydra.testing.TestCase.DeannotateTerm extends TestCase implements Serializable
-
Serialized Fields
-
value
DeannotateTermTestCase value
-
-
-
Class hydra.testing.TestCase.DeannotateType extends TestCase implements Serializable
-
Serialized Fields
-
value
DeannotateTypeTestCase value
-
-
-
Class hydra.testing.TestCase.DelegatedEvaluation extends TestCase implements Serializable
-
Serialized Fields
-
value
DelegatedEvaluationTestCase value
-
-
-
Class hydra.testing.TestCase.EtaExpansion extends TestCase implements Serializable
-
Serialized Fields
-
value
EtaExpansionTestCase value
-
-
-
Class hydra.testing.TestCase.Evaluation extends TestCase implements Serializable
-
Serialized Fields
-
value
EvaluationTestCase value
-
-
-
Class hydra.testing.TestCase.FlattenLetTerms extends TestCase implements Serializable
-
Serialized Fields
-
value
FlattenLetTermsTestCase value
-
-
-
Class hydra.testing.TestCase.FoldOverTerm extends TestCase implements Serializable
-
Serialized Fields
-
value
FoldOverTermTestCase value
-
-
-
Class hydra.testing.TestCase.FreeVariables extends TestCase implements Serializable
-
Serialized Fields
-
value
FreeVariablesTestCase value
-
-
-
Class hydra.testing.TestCase.HoistCaseStatements extends TestCase implements Serializable
-
Serialized Fields
-
value
HoistCaseStatementsTestCase value
-
-
-
Class hydra.testing.TestCase.HoistLetBindings extends TestCase implements Serializable
-
Serialized Fields
-
value
HoistLetBindingsTestCase value
-
-
-
Class hydra.testing.TestCase.HoistPolymorphicLetBindings extends TestCase implements Serializable
-
Serialized Fields
-
value
HoistPolymorphicLetBindingsTestCase value
-
-
-
Class hydra.testing.TestCase.HoistSubterms extends TestCase implements Serializable
-
Serialized Fields
-
value
HoistSubtermsTestCase value
-
-
-
Class hydra.testing.TestCase.Inference extends TestCase implements Serializable
-
Serialized Fields
-
value
InferenceTestCase value
-
-
-
Class hydra.testing.TestCase.InferenceFailure extends TestCase implements Serializable
-
Serialized Fields
-
value
InferenceFailureTestCase value
-
-
-
Class hydra.testing.TestCase.JoinTypes extends TestCase implements Serializable
-
Serialized Fields
-
value
JoinTypesTestCase value
-
-
-
Class hydra.testing.TestCase.JsonDecode extends TestCase implements Serializable
-
Serialized Fields
-
value
JsonDecodeTestCase value
-
-
-
Class hydra.testing.TestCase.JsonEncode extends TestCase implements Serializable
-
Serialized Fields
-
value
JsonEncodeTestCase value
-
-
-
Class hydra.testing.TestCase.JsonParser extends TestCase implements Serializable
-
Serialized Fields
-
value
ParserTestCase<Value> value
-
-
-
Class hydra.testing.TestCase.JsonRoundtrip extends TestCase implements Serializable
-
Serialized Fields
-
value
JsonRoundtripTestCase value
-
-
-
Class hydra.testing.TestCase.JsonWriter extends TestCase implements Serializable
-
Serialized Fields
-
value
WriterTestCase<Value> value
-
-
-
Class hydra.testing.TestCase.LiftLambdaAboveLet extends TestCase implements Serializable
-
Serialized Fields
-
value
LiftLambdaAboveLetTestCase value
-
-
-
Class hydra.testing.TestCase.NormalizeTypeVariables extends TestCase implements Serializable
-
Serialized Fields
-
value
NormalizeTypeVariablesTestCase value
-
-
-
Class hydra.testing.TestCase.RewriteTerm extends TestCase implements Serializable
-
Serialized Fields
-
value
RewriteTermTestCase value
-
-
-
Class hydra.testing.TestCase.RewriteType extends TestCase implements Serializable
-
Serialized Fields
-
value
RewriteTypeTestCase value
-
-
-
Class hydra.testing.TestCase.Serialization extends TestCase implements Serializable
-
Serialized Fields
-
value
SerializationTestCase value
-
-
-
Class hydra.testing.TestCase.SimplifyTerm extends TestCase implements Serializable
-
Serialized Fields
-
value
SimplifyTermTestCase value
-
-
-
Class hydra.testing.TestCase.SubstInType extends TestCase implements Serializable
-
Serialized Fields
-
value
SubstInTypeTestCase value
-
-
-
Class hydra.testing.TestCase.TopologicalSort extends TestCase implements Serializable
-
Serialized Fields
-
value
TopologicalSortTestCase value
-
-
-
Class hydra.testing.TestCase.TopologicalSortBindings extends TestCase implements Serializable
-
Serialized Fields
-
value
TopologicalSortBindingsTestCase value
-
-
-
Class hydra.testing.TestCase.TopologicalSortSCC extends TestCase implements Serializable
-
Serialized Fields
-
value
TopologicalSortSCCTestCase value
-
-
-
Class hydra.testing.TestCase.TypeChecking extends TestCase implements Serializable
-
Serialized Fields
-
value
TypeCheckingTestCase value
-
-
-
Class hydra.testing.TestCase.TypeCheckingFailure extends TestCase implements Serializable
-
Serialized Fields
-
value
TypeCheckingFailureTestCase value
-
-
-
Class hydra.testing.TestCase.TypeReduction extends TestCase implements Serializable
-
Serialized Fields
-
value
TypeReductionTestCase value
-
-
-
Class hydra.testing.TestCase.UnifyTypes extends TestCase implements Serializable
-
Serialized Fields
-
value
UnifyTypesTestCase value
-
-
-
Class hydra.testing.TestCase.UnshadowVariables extends TestCase implements Serializable
-
Serialized Fields
-
value
UnshadowVariablesTestCase value
-
-
-
Class hydra.testing.TestCase.ValidateCoreTerm extends TestCase implements Serializable
-
Serialized Fields
-
value
ValidateCoreTermTestCase value
-
-
-
Class hydra.testing.TestCase.VariableOccursInType extends TestCase implements Serializable
-
Serialized Fields
-
value
VariableOccursInTypeTestCase value
-
-
-
Class hydra.testing.TestCaseWithMetadata extends java.lang.Object implements Serializable
-
Class hydra.testing.TestCodec extends java.lang.Object implements Serializable
-
Serialized Fields
-
encodeTerm
java.util.function.Function<Term,java.util.function.Function<Graph,Either<java.lang.String,java.lang.String>>> encodeTerm
A function for encoding Hydra terms into the target language -
encodeType
java.util.function.Function<Type,java.util.function.Function<Graph,Either<java.lang.String,java.lang.String>>> encodeType
A function for encoding Hydra types into the target language -
fileExtension
FileExtension fileExtension
The file extension for test files (e.g., 'hs', 'java', 'py') -
findImports
java.util.function.Function<PersistentSet<Name>,ConsList<java.lang.String>> findImports
A function that determines the necessary imports for a given set of dependencies -
formatModuleName
java.util.function.Function<Namespace,java.lang.String> formatModuleName
A function for formatting module names according to the target language's conventions -
formatTestName
java.util.function.Function<java.lang.String,java.lang.String> formatTestName
A function for formatting test case names according to the target language's conventions -
importTemplate
java.lang.String importTemplate
A template string for import/include statements -
language
LanguageName language
The name of the target programming language -
moduleTemplate
java.lang.String moduleTemplate
A template string for the overall test module structure -
testCaseTemplate
java.lang.String testCaseTemplate
A template string for individual test case assertions -
testGroupTemplate
java.lang.String testGroupTemplate
A template string for wrapping a group of test cases
-
-
-
Class hydra.testing.TestGenerator extends java.lang.Object implements Serializable
-
Serialized Fields
-
aggregatorFile
Maybe<java.util.function.Function<java.lang.String,java.util.function.Function<ConsList<Module>,Pair<java.lang.String,java.lang.String>>>> aggregatorFile
Generate an aggregator file (e.g., Spec.hs for Haskell, conftest.py for Python). Takes base directory and list of modules, returns (filepath, content) or Nothing if not needed -
createCodec
java.util.function.Function<Namespaces<A>,TestCodec> createCodec
Create a test codec from resolved namespaces -
generateTestFile
java.util.function.Function<Module,java.util.function.Function<TestGroup,java.util.function.Function<Graph,Either<java.lang.String,Pair<java.lang.String,java.lang.String>>>>> generateTestFile
Generate a complete test file for a module and test group -
namespacesForModule
java.util.function.Function<Module,java.util.function.Function<Graph,Either<java.lang.String,Namespaces<A>>>> namespacesForModule
Build namespaces for a module, resolving all imports and primitives
-
-
-
Class hydra.testing.TestGroup extends java.lang.Object implements Serializable
-
Serialized Fields
-
cases
ConsList<TestCaseWithMetadata> cases
The test cases in this group -
description
Maybe<java.lang.String> description
An optional description of the group -
name
java.lang.String name
The name of the test group -
subgroups
ConsList<TestGroup> subgroups
Nested test groups
-
-
-
Class hydra.testing.TopologicalSortBindingsTestCase extends java.lang.Object implements Serializable
-
Class hydra.testing.TopologicalSortSCCTestCase extends java.lang.Object implements Serializable
-
Class hydra.testing.TopologicalSortTestCase extends java.lang.Object implements Serializable
-
Serialized Fields
-
adjacencyList
ConsList<Pair<java.lang.Integer,ConsList<java.lang.Integer>>> adjacencyList
The directed graph as an adjacency list (node to list of dependencies) -
expected
Either<ConsList<ConsList<java.lang.Integer>>,ConsList<java.lang.Integer>> expected
The expected result: Left for cycles, Right for sorted nodes
-
-
-
Class hydra.testing.TypeCheckingFailureTestCase extends java.lang.Object implements Serializable
-
Serialized Fields
-
input
Term input
The term for which type checking should fail
-
-
-
Class hydra.testing.TypeCheckingTestCase extends java.lang.Object implements Serializable
-
Class hydra.testing.TypeReductionTestCase extends java.lang.Object implements Serializable
-
Class hydra.testing.TypeRewriter extends java.lang.Object implements Serializable
-
Class hydra.testing.TypeRewriter.ReplaceStringWithInt32 extends TypeRewriter implements Serializable
-
Class hydra.testing.UnifyTypesTestCase extends java.lang.Object implements Serializable
-
Serialized Fields
-
expected
Either<java.lang.String,TypeSubst> expected
The expected result: Left for failure (substring of error), Right for substitution -
left
Type left
The left type to unify -
right
Type right
The right type to unify -
schemaTypes
ConsList<Name> schemaTypes
The schema types map (type variable names that should not be bound)
-
-
-
Class hydra.testing.UnshadowVariablesTestCase extends java.lang.Object implements Serializable
-
Class hydra.testing.ValidateCoreTermTestCase extends java.lang.Object implements Serializable
-
Serialized Fields
-
input
Term input
The term to validate -
output
Maybe<InvalidTermError> output
The expected validation result (Nothing if valid, Just error if invalid) -
typed
java.lang.Boolean typed
Whether to expect System F (typed) terms. When true, type variable binding checks and UntypedTermVariableError are active.
-
-
-
Class hydra.testing.VariableOccursInTypeTestCase extends java.lang.Object implements Serializable
-
Class hydra.testing.WriterTestCase extends java.lang.Object implements Serializable
-
Serialized Fields
-
input
A input
The input value to write -
output
java.lang.String output
The expected string
-
-
-
-
Package hydra.tools
-
Class hydra.tools.MapperBase.MapperException extends java.lang.RuntimeException implements Serializable
-
-
Package hydra.topology
-
Class hydra.topology.OrderingIsomorphism extends java.lang.Object implements Serializable
-
Class hydra.topology.TarjanState extends java.lang.Object implements Serializable
-
Serialized Fields
-
counter
java.lang.Integer counter
Next available index for vertices in the DFS traversal -
indices
PersistentMap<java.lang.Integer,java.lang.Integer> indices
Mapping from vertices to their indices in the DFS traversal -
lowLinks
PersistentMap<java.lang.Integer,java.lang.Integer> lowLinks
Mapping from vertices to their lowest reachable index in the DFS traversal -
onStack
PersistentSet<java.lang.Integer> onStack
Set of vertices currently on the stack, for quick lookup -
sccs
ConsList<ConsList<java.lang.Integer>> sccs
Accumulated strongly connected components, each a list of vertices -
stack
ConsList<java.lang.Integer> stack
Current DFS stack, with vertices in reverse order
-
-
-
-
Package hydra.typing
-
Class hydra.typing.FunctionStructure extends java.lang.Object implements Serializable
-
Serialized Fields
-
bindings
ConsList<Binding> bindings
Let bindings accumulated from the term -
body
Term body
The body term after removing all lambdas, lets, etc. -
codomain
Maybe<Type> codomain
The return type of the function (if type inference succeeded) -
domains
ConsList<Type> domains
Domain types of the value parameters -
environment
Env environment
Updated environment after processing all bindings -
params
ConsList<Name> params
Value parameters (from lambdas) -
typeParams
ConsList<Name> typeParams
Type parameters (from type lambdas)
-
-
-
Class hydra.typing.InferenceResult extends java.lang.Object implements Serializable
-
Serialized Fields
-
classConstraints
PersistentMap<Name,TypeVariableMetadata> classConstraints
Class constraints discovered during inference (e.g., Ord constraints from Map.lookup) -
context
Context context
The updated context after inference (carries fresh variable state) -
subst
TypeSubst subst
The type substitution resulting from unification -
term
Term term
The term which was inferred -
type
Type type
The inferred type of the term
-
-
-
Class hydra.typing.TermSubst extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
PersistentMap<Name,Term> value
-
-
-
Class hydra.typing.TypeConstraint extends java.lang.Object implements Serializable
-
Class hydra.typing.TypeSubst extends java.lang.Object implements Serializable
-
Serialized Fields
-
value
PersistentMap<Name,Type> value
-
-
-
-
Package hydra.util
-
Class hydra.util.Adapter extends java.lang.Object implements Serializable
-
Class hydra.util.Bicoder extends java.lang.Object implements Serializable
-
Class hydra.util.CaseConvention extends java.lang.Object implements Serializable
-
Class hydra.util.CaseConvention.Camel extends CaseConvention implements Serializable
-
Class hydra.util.CaseConvention.LowerSnake extends CaseConvention implements Serializable
-
Class hydra.util.CaseConvention.Pascal extends CaseConvention implements Serializable
-
Class hydra.util.CaseConvention.UpperSnake extends CaseConvention implements Serializable
-
Class hydra.util.Coder extends java.lang.Object implements Serializable
-
Serialized Fields
-
decode
java.util.function.Function<Context,java.util.function.Function<V2,Either<InContext<Error_>,V1>>> decode
A function which decodes target values as source values in a given context -
encode
java.util.function.Function<Context,java.util.function.Function<V1,Either<InContext<Error_>,V2>>> encode
A function which encodes source values as target values in a given context
-
-
-
Class hydra.util.Comparison extends java.lang.Object implements Serializable
-
Class hydra.util.Comparison.EqualTo extends Comparison implements Serializable
-
Class hydra.util.Comparison.GreaterThan extends Comparison implements Serializable
-
Class hydra.util.Comparison.LessThan extends Comparison implements Serializable
-
Class hydra.util.ConsList extends java.util.AbstractList<T> implements Serializable
-
Class hydra.util.Maybe extends java.lang.Object implements Serializable
-
Serialized Fields
-
present
boolean present
-
value
T value
-
-
-
Class hydra.util.PersistentMap extends java.lang.Object implements Serializable
-
Class hydra.util.PersistentSet extends java.lang.Object implements Serializable
-
Serialized Fields
-
map
PersistentMap<T,java.lang.Object> map
-
-
-
Class hydra.util.Precision extends java.lang.Object implements Serializable
-
Class hydra.util.Precision.Arbitrary extends Precision implements Serializable
-
Class hydra.util.Precision.Bits extends Precision implements Serializable
-
Serialized Fields
-
value
java.lang.Integer value
-
-
-
Class hydra.util.StatelessAdapter extends Adapter<T1,T2,V1,V2> implements Serializable
-
Class hydra.util.StatelessCoder extends Coder<V1,V2> implements Serializable
-
Class hydra.util.Unit extends java.lang.Object implements Serializable
-
-
Package hydra.variants
-
Class hydra.variants.EliminationVariant extends java.lang.Object implements Serializable
-
Class hydra.variants.EliminationVariant.Record extends EliminationVariant implements Serializable
-
Class hydra.variants.EliminationVariant.Union extends EliminationVariant implements Serializable
-
Class hydra.variants.EliminationVariant.Wrap extends EliminationVariant implements Serializable
-
Class hydra.variants.FunctionVariant extends java.lang.Object implements Serializable
-
Class hydra.variants.FunctionVariant.Elimination extends FunctionVariant implements Serializable
-
Class hydra.variants.FunctionVariant.Lambda extends FunctionVariant implements Serializable
-
Class hydra.variants.FunctionVariant.Primitive extends FunctionVariant implements Serializable
-
Class hydra.variants.LiteralVariant extends java.lang.Object implements Serializable
-
Class hydra.variants.LiteralVariant.Binary extends LiteralVariant implements Serializable
-
Class hydra.variants.LiteralVariant.Boolean_ extends LiteralVariant implements Serializable
-
Class hydra.variants.LiteralVariant.Float_ extends LiteralVariant implements Serializable
-
Class hydra.variants.LiteralVariant.Integer_ extends LiteralVariant implements Serializable
-
Class hydra.variants.LiteralVariant.String_ extends LiteralVariant implements Serializable
-
Class hydra.variants.TermVariant extends java.lang.Object implements Serializable
-
Class hydra.variants.TermVariant.Annotated extends TermVariant implements Serializable
-
Class hydra.variants.TermVariant.Application extends TermVariant implements Serializable
-
Class hydra.variants.TermVariant.Either extends TermVariant implements Serializable
-
Class hydra.variants.TermVariant.Function extends TermVariant implements Serializable
-
Class hydra.variants.TermVariant.Let extends TermVariant implements Serializable
-
Class hydra.variants.TermVariant.List extends TermVariant implements Serializable
-
Class hydra.variants.TermVariant.Literal extends TermVariant implements Serializable
-
Class hydra.variants.TermVariant.Map extends TermVariant implements Serializable
-
Class hydra.variants.TermVariant.Maybe extends TermVariant implements Serializable
-
Class hydra.variants.TermVariant.Pair extends TermVariant implements Serializable
-
Class hydra.variants.TermVariant.Record extends TermVariant implements Serializable
-
Class hydra.variants.TermVariant.Set extends TermVariant implements Serializable
-
Class hydra.variants.TermVariant.TypeApplication extends TermVariant implements Serializable
-
Class hydra.variants.TermVariant.TypeLambda extends TermVariant implements Serializable
-
Class hydra.variants.TermVariant.Union extends TermVariant implements Serializable
-
Class hydra.variants.TermVariant.Unit extends TermVariant implements Serializable
-
Class hydra.variants.TermVariant.Variable extends TermVariant implements Serializable
-
Class hydra.variants.TermVariant.Wrap extends TermVariant implements Serializable
-
Class hydra.variants.TypeVariant extends java.lang.Object implements Serializable
-
Class hydra.variants.TypeVariant.Annotated extends TypeVariant implements Serializable
-
Class hydra.variants.TypeVariant.Application extends TypeVariant implements Serializable
-
Class hydra.variants.TypeVariant.Either extends TypeVariant implements Serializable
-
Class hydra.variants.TypeVariant.Forall extends TypeVariant implements Serializable
-
Class hydra.variants.TypeVariant.Function extends TypeVariant implements Serializable
-
Class hydra.variants.TypeVariant.List extends TypeVariant implements Serializable
-
Class hydra.variants.TypeVariant.Literal extends TypeVariant implements Serializable
-
Class hydra.variants.TypeVariant.Map extends TypeVariant implements Serializable
-
Class hydra.variants.TypeVariant.Maybe extends TypeVariant implements Serializable
-
Class hydra.variants.TypeVariant.Pair extends TypeVariant implements Serializable
-
Class hydra.variants.TypeVariant.Record extends TypeVariant implements Serializable
-
Class hydra.variants.TypeVariant.Set extends TypeVariant implements Serializable
-
Class hydra.variants.TypeVariant.Union extends TypeVariant implements Serializable
-
Class hydra.variants.TypeVariant.Unit extends TypeVariant implements Serializable
-
Class hydra.variants.TypeVariant.Variable extends TypeVariant implements Serializable
-
Class hydra.variants.TypeVariant.Void_ extends TypeVariant implements Serializable
-
Class hydra.variants.TypeVariant.Wrap extends TypeVariant implements Serializable
-