Servertec   QuickSortStringArray
Content
Introduction
Release Notes
Features
FAQs
Requirements
Installation
Add-ons
How To
Change Log
Future Plans
Knowledge Base
Documentation
Conventions
Users
Reference
iServer API
AccessLogEntry
Codecs
Connection
ConnectionPool...
DString
ErrorLogEntry
EventLogEntry
FileCache
FileUpload
IOHandler
IOManager
iws
Logger
MultiPartForm
QuickSort
QuickSortString...
Realm
RealmAdmin...
RealmManager
ServletContextImpl
ServletContext...
ServletImpl
ServletManager
Utils

Servlet API
CGI
SSI
Servlets
Config Files
Log Files
Classes
Directory Tree

Samples
Sales
Legal
Feedback

 

java.lang.Object
 |
 +--stec.lang.QuickSortStringArray

public class QuickSortStringArray extends QuickSort

Used to sort array of String objects.

Methods

Method Description
sort Returns a case-sensitive sorted array of String objects using the specified String array.
sortIgnoreCase Returns a case-insensitive sorted array of String objects using the specified String array.

sort

Returns a case-sensitive sorted array of String objects using the specified String array.

Syntax

public String[] sort(String[] stringarray)

Parameters

stringarray the String array object to sort.

Returns

String[] the sorted string array.

Throws

Nothing

Example

String[] sitems = qs.sort(items)

sort

Returns a case-insensitive sorted array of String objects using the specified String array.

Syntax

public String[] sortIgnoreCase(String[] stringarray)

Parameters

stringarray the String array object to sort.

Returns

String[] the sorted string array.

Throws

Nothing

Example

String[] sitems = qs.sort(items)
 top of page
 Built with iScript Copyright © 1997-2000 Servertec. All rights reserved.
Last Modified: Thu Aug 10 13:06:59 EDT 2000