Class EnumWrapper
Assembly: Cassandra.dll
Syntax
public abstract class EnumWrapper : IEquatable<EnumWrapper>
Constructors
EnumWrapper(string, string)
Declaration
protected EnumWrapper(string enumName, string enumValue)
Parameters
Type |
Name |
Description |
string |
enumName |
The name of the enum.
|
string |
enumValue |
The value of the enum.
|
Properties
EnumName
Gets the name of the enum.
Declaration
public string EnumName { get; }
Property Value
EnumValue
Gets the value of the enum.
Declaration
public string EnumValue { get; }
Property Value
Methods
Equals(EnumWrapper)
Declaration
public bool Equals(EnumWrapper other)
Parameters
Returns
Equals(object)
Declaration
public override bool Equals(object obj)
Parameters
Type |
Name |
Description |
object |
obj |
|
Returns
Overrides
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
Implements