Package hydra.ext.csharp.syntax
Class NullConditionalMemberAccess
- java.lang.Object
-
- hydra.ext.csharp.syntax.NullConditionalMemberAccess
-
- All Implemented Interfaces:
java.io.Serializable
public class NullConditionalMemberAccess extends java.lang.Object implements java.io.Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description java.util.List<DependentAccess>
dependentAccess
PrimaryExpression
expression
static Name
FIELD_NAME_DEPENDENT_ACCESS
static Name
FIELD_NAME_EXPRESSION
static Name
FIELD_NAME_IDENTIFIER
static Name
FIELD_NAME_TYPE_ARGUMENTS
Identifier
identifier
static Name
TYPE_NAME
Opt<TypeArgumentList>
typeArguments
-
Constructor Summary
Constructors Constructor Description NullConditionalMemberAccess(PrimaryExpression expression, Identifier identifier, Opt<TypeArgumentList> typeArguments, java.util.List<DependentAccess> dependentAccess)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object other)
int
hashCode()
NullConditionalMemberAccess
withDependentAccess(java.util.List<DependentAccess> dependentAccess)
NullConditionalMemberAccess
withExpression(PrimaryExpression expression)
NullConditionalMemberAccess
withIdentifier(Identifier identifier)
NullConditionalMemberAccess
withTypeArguments(Opt<TypeArgumentList> typeArguments)
-
-
-
Field Detail
-
TYPE_NAME
public static final Name TYPE_NAME
-
FIELD_NAME_EXPRESSION
public static final Name FIELD_NAME_EXPRESSION
-
FIELD_NAME_IDENTIFIER
public static final Name FIELD_NAME_IDENTIFIER
-
FIELD_NAME_TYPE_ARGUMENTS
public static final Name FIELD_NAME_TYPE_ARGUMENTS
-
FIELD_NAME_DEPENDENT_ACCESS
public static final Name FIELD_NAME_DEPENDENT_ACCESS
-
expression
public final PrimaryExpression expression
-
identifier
public final Identifier identifier
-
typeArguments
public final Opt<TypeArgumentList> typeArguments
-
dependentAccess
public final java.util.List<DependentAccess> dependentAccess
-
-
Constructor Detail
-
NullConditionalMemberAccess
public NullConditionalMemberAccess(PrimaryExpression expression, Identifier identifier, Opt<TypeArgumentList> typeArguments, java.util.List<DependentAccess> dependentAccess)
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
withExpression
public NullConditionalMemberAccess withExpression(PrimaryExpression expression)
-
withIdentifier
public NullConditionalMemberAccess withIdentifier(Identifier identifier)
-
withTypeArguments
public NullConditionalMemberAccess withTypeArguments(Opt<TypeArgumentList> typeArguments)
-
withDependentAccess
public NullConditionalMemberAccess withDependentAccess(java.util.List<DependentAccess> dependentAccess)
-
-