Constructor and Description |
---|
ParsePosition(int index)
使用给定的初始索引创建一个新的ParsePosition。
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj)
覆盖等于
|
int |
getErrorIndex()
检索发生错误的索引,如果未设置错误索引,则返回-1。
|
int |
getIndex()
检索当前的解析位置。
|
int |
hashCode()
返回此ParsePosition的哈希码。
|
void |
setErrorIndex(int ei)
设置解析错误发生的索引。
|
void |
setIndex(int index)
设置当前解析位置。
|
String |
toString()
返回此ParsePosition的字符串表示形式。
|
public ParsePosition(int index)
index
- 初始索引
public int getIndex()
public void setIndex(int index)
index
- 当前解析位置
public void setErrorIndex(int ei)
ei
- 发生错误的索引
public int getErrorIndex()
public boolean equals(Object obj)
equals
在类别
Object
obj
- 与之比较的参考对象。
true
如果此对象与obj参数相同;
false
否则。
Object.hashCode()
, HashMap
public int hashCode()
hashCode
在
Object
Object.equals(java.lang.Object)
,
System.identityHashCode(java.lang.Object)
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.