C# Class LibiadaCore.Core.SimpleTypes.NullValue

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

Méthodes publiques

Méthode 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

Méthode Description
NullValue ( )

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

Method Details

Clone() public méthode

The clone.
public Clone ( ) : IBaseObject
Résultat IBaseObject

Equals() public méthode

The equals.
public Equals ( NullValue other ) : bool
other NullValue /// The other. ///
Résultat bool

Equals() public méthode

The equals.
public Equals ( object other ) : bool
other object /// The other element. ///
Résultat bool

GetHashCode() public méthode

The get hash code.
public GetHashCode ( ) : int
Résultat int

Instance() public static méthode

Replacement for constructor.
public static Instance ( ) : NullValue
Résultat NullValue

ToString() public méthode

Converts NullValue to "-" string.
public ToString ( ) : string
Résultat string