All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.andthehorseyourodeinon.utils.ParameterVector

java.lang.Object
   |
   +----java.util.Vector
           |
           +----com.andthehorseyourodeinon.utils.ParameterVector

public class ParameterVector
extends Vector
The ParameterVector class takes a single, space-delimited set of parameters from a String and wraps them in a Vector.

Version:
$Id: ParameterVector.java,v 1.1 2000/05/16 22:45:10 samuelg Exp $

Constructor Index

 o ParameterVector(String)

Method Index

 o paramAt(int)
Returns the parameter at the specified position, cast as a String.
 o parameterAt(int)
Returns the parameter at the specified position, cast as a String.
 o stringAt(int)
Returns the parameter at the specified position, cast as a String.
 o toSingleLine()

Constructors

 o ParameterVector
 public ParameterVector(String parameterString)

Methods

 o toSingleLine
 public String toSingleLine()
Returns:
all paramters as a space-delimited String
 o stringAt
 public String stringAt(int i)
Returns the parameter at the specified position, cast as a String. One of three identical methods.

See Also:
paramAt, parameterAt
 o parameterAt
 public String parameterAt(int i)
Returns the parameter at the specified position, cast as a String. One of three identical methods.

See Also:
stringAt, paramAt
 o paramAt
 public String paramAt(int i)
Returns the parameter at the specified position, cast as a String. One of three identical methods.

See Also:
stringAt, parameterAt

All Packages  Class Hierarchy  This Package  Previous  Next  Index