SortOptions

DATA STRUCTURES FOR GAME PROGRAMMERS Copyright © 2007 Michael Baczynski, http://www.polygonal.de

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Summary
SortOptionsDATA STRUCTURES FOR GAME PROGRAMMERS Copyright © 2007 Michael Baczynski, http://www.polygonal.de
Constants
INSERTION_SORTA flag that specifies the insertion sort algorithm.
CHARACTER_STRINGA flag that Specifies character-string sorting.
CASEINSENSITIVEA flag that specifies case-insensitive sorting.
DESCENDINGA flag that specifies descending sorting.

Constants

INSERTION_SORT

public static const INSERTION_SORT: int

A flag that specifies the insertion sort algorithm.  You can use this constant for the options parameter in the sort() method.

See Also

de.polygonal.ds.SLinkedList.sort(), de.polygonal.ds.DLinkedList.sort()

CHARACTER_STRING

public static const CHARACTER_STRING: int

A flag that Specifies character-string sorting.  You can use this constant for the options parameter in the sort() method.

See Also

de.polygonal.ds.SLinkedList.sort(), de.polygonal.ds.DLinkedList.sort()

CASEINSENSITIVE

public static const CASEINSENSITIVE: int

A flag that specifies case-insensitive sorting.  You can use this constant for the options parameter in the sort() method.

See Also

* @see de.polygonal.ds.DLinkedList#sort() (de.polygonal.ds.SLinkedList.sort())

DESCENDING

public static const DESCENDING: int

A flag that specifies descending sorting.  You can use this constant for the options parameter in the sort() method.

See Also

de.polygonal.ds.SLinkedList.sort(), de.polygonal.ds.DLinkedList.sort()

public static const INSERTION_SORT: int
A flag that specifies the insertion sort algorithm.
public static const CHARACTER_STRING: int
A flag that Specifies character-string sorting.
public static const CASEINSENSITIVE: int
A flag that specifies case-insensitive sorting.
public static const DESCENDING: int
A flag that specifies descending sorting.
Close