Class EnumWrapper
Represents an enum.
Inheritance
System.Object
EnumWrapper
Implements
System.IEquatable<EnumWrapper>
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Gremlin.Net.Process.Traversal
Assembly: cs.temp.dll.dll
Syntax
public abstract class EnumWrapper : IEquatable<EnumWrapper>
Constructors
EnumWrapper(String, String)
Initializes a new instance of the EnumWrapper class.
Declaration
protected EnumWrapper(string enumName, string enumValue)
Parameters
Type | Name | Description |
---|---|---|
System.String | enumName | The name of the enum. |
System.String | enumValue | The value of the enum. |
Properties
EnumName
Gets the name of the enum.
Declaration
public string EnumName { get; }
Property Value
Type | Description |
---|---|
System.String |
EnumValue
Gets the value of the enum.
Declaration
public string EnumValue { get; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Equals(EnumWrapper)
Declaration
public bool Equals(EnumWrapper other)
Parameters
Type | Name | Description |
---|---|---|
EnumWrapper | other |
Returns
Type | Description |
---|---|
System.Boolean |
Equals(Object)
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj |
Returns
Type | Description |
---|---|
System.Boolean |
Overrides
System.Object.Equals(System.Object)
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 |
Overrides
System.Object.GetHashCode()
Implements
System.IEquatable<T>