C# Class Onism.Cldr.CldrTreeNode

Show file Open project: pgolebiowski/onism-cldr Class Usage Examples

Private Properties

Property Type Description
Add void
CldrTreeNode System
GetAncestors IEnumerable
SelectNode CldrTreeNode

Public Methods

Method Description
Ancestors ( ) : IEnumerable

Returns a collection of the ancestor nodes of this node.

AncestorsAndSelf ( ) : IEnumerable

Returns a collection of tokens that contain this token, and the ancestors of this token.

CldrTreeNode ( ) : System
Equals ( object obj ) : bool
GetHashCode ( ) : int
GetValue ( CldrLocale locale ) : string
SelectNode ( string path ) : CldrTreeNode

Selects a tree node using a dot-separated expression.

Private Methods

Method Description
Add ( int locale, CldrTreePath path, int value ) : void
CldrTreeNode ( CldrTree tree, CldrTreeNode parent ) : System
GetAncestors ( bool self ) : IEnumerable
SelectNode ( CldrTreePath path ) : CldrTreeNode

Method Details

Ancestors() public method

Returns a collection of the ancestor nodes of this node.
public Ancestors ( ) : IEnumerable
return IEnumerable

AncestorsAndSelf() public method

Returns a collection of tokens that contain this token, and the ancestors of this token.
public AncestorsAndSelf ( ) : IEnumerable
return IEnumerable

CldrTreeNode() public method

public CldrTreeNode ( ) : System
return System

Equals() public method

public Equals ( object obj ) : bool
obj object
return bool

GetHashCode() public method

public GetHashCode ( ) : int
return int

GetValue() public method

public GetValue ( CldrLocale locale ) : string
locale CldrLocale
return string

SelectNode() public method

Selects a tree node using a dot-separated expression.
public SelectNode ( string path ) : CldrTreeNode
path string The dot-separated expression.
return CldrTreeNode