| java.lang.Object com.versant.core.util.FastParser
FastParser | public class FastParser (Code) | | Static utility methods for parsing primitives from String's without
creating any objects.
|
Method Summary | |
public static int | parseInt(String value, int index) Parse the int at index from value. | public static long | parseLong(String value, int index) Parse the long at index from value. |
parseInt | public static int parseInt(String value, int index)(Code) | | Parse the int at index from value. The int is assumed to run until
the end of the String.
|
parseLong | public static long parseLong(String value, int index)(Code) | | Parse the long at index from value. The long is assumed to run until
the end of the String.
|
|
|