C# Class LibiadaCore.Core.SimpleTypes.NullValue

Null value class. Used to fill empty space in chains. Implements singleton pattern.
Inheritance: IBaseObject
Mostra file Open project: intervals-mining-lab/libiada-core

Public Methods

Method Description
Clone ( ) : IBaseObject

The clone.

Equals ( NullValue other ) : bool

The equals.

Equals ( object other ) : bool

The equals.

GetHashCode ( ) : int

The get hash code.

Instance ( ) : NullValue

Replacement for constructor.

ToString ( ) : string

Converts NullValue to "-" string.

Private Methods

Method Description
NullValue ( )

Prevents a default instance of the NullValue class from being created.

Method Details

Clone() public method

The clone.
public Clone ( ) : IBaseObject
return IBaseObject

Equals() public method

The equals.
public Equals ( NullValue other ) : bool
other NullValue /// The other. ///
return bool

Equals() public method

The equals.
public Equals ( object other ) : bool
other object /// The other element. ///
return bool

GetHashCode() public method

The get hash code.
public GetHashCode ( ) : int
return int

Instance() public static method

Replacement for constructor.
public static Instance ( ) : NullValue
return NullValue

ToString() public method

Converts NullValue to "-" string.
public ToString ( ) : string
return string