Package hydra.ext.csharp.syntax
Class MemberAccess
- java.lang.Object
-
- hydra.ext.csharp.syntax.MemberAccess
-
- All Implemented Interfaces:
java.io.Serializable
public class MemberAccess extends java.lang.Object implements java.io.Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static Name
FIELD_NAME_HEAD
static Name
FIELD_NAME_IDENTIFIER
static Name
FIELD_NAME_TYPE_ARGUMENTS
MemberAccessHead
head
Identifier
identifier
static Name
TYPE_NAME
Opt<TypeArgumentList>
typeArguments
-
Constructor Summary
Constructors Constructor Description MemberAccess(MemberAccessHead head, Identifier identifier, Opt<TypeArgumentList> typeArguments)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object other)
int
hashCode()
MemberAccess
withHead(MemberAccessHead head)
MemberAccess
withIdentifier(Identifier identifier)
MemberAccess
withTypeArguments(Opt<TypeArgumentList> typeArguments)
-
-
-
Field Detail
-
TYPE_NAME
public static final Name TYPE_NAME
-
FIELD_NAME_HEAD
public static final Name FIELD_NAME_HEAD
-
FIELD_NAME_IDENTIFIER
public static final Name FIELD_NAME_IDENTIFIER
-
FIELD_NAME_TYPE_ARGUMENTS
public static final Name FIELD_NAME_TYPE_ARGUMENTS
-
head
public final MemberAccessHead head
-
identifier
public final Identifier identifier
-
typeArguments
public final Opt<TypeArgumentList> typeArguments
-
-
Constructor Detail
-
MemberAccess
public MemberAccess(MemberAccessHead head, Identifier identifier, Opt<TypeArgumentList> typeArguments)
-
-
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
-
withHead
public MemberAccess withHead(MemberAccessHead head)
-
withIdentifier
public MemberAccess withIdentifier(Identifier identifier)
-
withTypeArguments
public MemberAccess withTypeArguments(Opt<TypeArgumentList> typeArguments)
-
-