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 $
-
ParameterVector(String)
-
-
paramAt(int)
- Returns the parameter at the specified position,
cast as a String.
-
parameterAt(int)
- Returns the parameter at the specified position,
cast as a String.
-
stringAt(int)
- Returns the parameter at the specified position,
cast as a String.
-
toSingleLine()
-
ParameterVector
public ParameterVector(String parameterString)
toSingleLine
public String toSingleLine()
- Returns:
- all paramters as a space-delimited String
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
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
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