C# 클래스 Quartz.Collection.TreeSet

상속: System.Collections.ArrayList, ISortedSet
파일 보기 프로젝트 열기: FelicePollano/Cron.NET 1 사용 예제들

공개 메소드들

메소드 설명
Add ( object obj ) : bool

Adds a new element to the ArrayList if it is not already present and sorts the ArrayList.

AddAll ( ICollection c ) : bool

Adds all the elements of the specified collection that are not present to the list.

Contains ( object item ) : bool

Determines whether an element is in the the current TreeSetSupport collection. The IComparer defined for the current set will be used to make comparisons between the elements already inserted in the collection and the item specified.

First ( ) : object

Returns the first item in the set.

TailSet ( object limit ) : ISortedSet

Returns a portion of the list whose elements are greater than the limit object parameter.

TreeSet ( ) : System

Initializes a new instance of the TreeSet class.

TreeSet ( ICollection c ) : System

Initializes a new instance of the TreeSet class.

TreeSet ( IComparer c ) : System

Initializes a new instance of the TreeSet class.

UnmodifiableTreeSet ( ICollection collection ) : TreeSet

Unmodifiables the tree set.

비공개 메소드들

메소드 설명
AddWithoutSorting ( object obj ) : bool

메소드 상세

Add() 공개 메소드

Adds a new element to the ArrayList if it is not already present and sorts the ArrayList.
public Add ( object obj ) : bool
obj object Element to insert to the ArrayList.
리턴 bool

AddAll() 공개 메소드

Adds all the elements of the specified collection that are not present to the list.
public AddAll ( ICollection c ) : bool
c ICollection Collection where the new elements will be added
리턴 bool

Contains() 공개 메소드

Determines whether an element is in the the current TreeSetSupport collection. The IComparer defined for the current set will be used to make comparisons between the elements already inserted in the collection and the item specified.
public Contains ( object item ) : bool
item object The object to be locatet in the current collection.
리턴 bool

First() 공개 메소드

Returns the first item in the set.
public First ( ) : object
리턴 object

TailSet() 공개 메소드

Returns a portion of the list whose elements are greater than the limit object parameter.
public TailSet ( object limit ) : ISortedSet
limit object The start element of the portion to extract.
리턴 ISortedSet

TreeSet() 공개 메소드

Initializes a new instance of the TreeSet class.
public TreeSet ( ) : System
리턴 System

TreeSet() 공개 메소드

Initializes a new instance of the TreeSet class.
/// is .
public TreeSet ( ICollection c ) : System
c ICollection The whose elements are copied to the new list.
리턴 System

TreeSet() 공개 메소드

Initializes a new instance of the TreeSet class.
public TreeSet ( IComparer c ) : System
c IComparer The c.
리턴 System

UnmodifiableTreeSet() 공개 정적인 메소드

Unmodifiables the tree set.
public static UnmodifiableTreeSet ( ICollection collection ) : TreeSet
collection ICollection The collection.
리턴 TreeSet