Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/java.base/share/classes/java/text/ParsePosition.java
41152 views
1
/*
2
* Copyright (c) 1996, 2021, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
21
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
26
/*
27
* (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
28
* (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
29
*
30
* The original version of this source code and documentation is copyrighted
31
* and owned by Taligent, Inc., a wholly-owned subsidiary of IBM. These
32
* materials are provided under terms of a License Agreement between Taligent
33
* and Sun. This technology is protected by multiple US and International
34
* patents. This notice and attribution to Taligent may not be removed.
35
* Taligent is a registered trademark of Taligent, Inc.
36
*
37
*/
38
39
package java.text;
40
41
42
/**
43
* {@code ParsePosition} is a simple class used by {@code Format}
44
* and its subclasses to keep track of the current position during parsing.
45
* The {@code parseObject} method in the various {@code Format}
46
* classes requires a {@code ParsePosition} object as an argument.
47
*
48
* <p>
49
* By design, as you parse through a string with different formats,
50
* you can use the same {@code ParsePosition}, since the index parameter
51
* records the current position.
52
*
53
* @author Mark Davis
54
* @since 1.1
55
* @see java.text.Format
56
*/
57
58
public class ParsePosition {
59
60
/**
61
* Input: the place you start parsing.
62
* <br>Output: position where the parse stopped.
63
* This is designed to be used serially,
64
* with each call setting index up for the next one.
65
*/
66
int index = 0;
67
int errorIndex = -1;
68
69
/**
70
* Retrieve the current parse position. On input to a parse method, this
71
* is the index of the character at which parsing will begin; on output, it
72
* is the index of the character following the last character parsed.
73
*
74
* @return the current parse position
75
*/
76
public int getIndex() {
77
return index;
78
}
79
80
/**
81
* Set the current parse position.
82
*
83
* @param index the current parse position
84
*/
85
public void setIndex(int index) {
86
this.index = index;
87
}
88
89
/**
90
* Create a new ParsePosition with the given initial index.
91
*
92
* @param index initial index
93
*/
94
public ParsePosition(int index) {
95
this.index = index;
96
}
97
/**
98
* Set the index at which a parse error occurred. Formatters
99
* should set this before returning an error code from their
100
* parseObject method. The default value is -1 if this is not set.
101
*
102
* @param ei the index at which an error occurred
103
* @since 1.2
104
*/
105
public void setErrorIndex(int ei)
106
{
107
errorIndex = ei;
108
}
109
110
/**
111
* Retrieve the index at which an error occurred, or -1 if the
112
* error index has not been set.
113
*
114
* @return the index at which an error occurred
115
* @since 1.2
116
*/
117
public int getErrorIndex()
118
{
119
return errorIndex;
120
}
121
122
/**
123
* Overrides equals
124
*/
125
public boolean equals(Object obj)
126
{
127
if (obj == null) return false;
128
if (!(obj instanceof ParsePosition other))
129
return false;
130
return (index == other.index && errorIndex == other.errorIndex);
131
}
132
133
/**
134
* Returns a hash code for this ParsePosition.
135
* @return a hash code value for this object
136
*/
137
public int hashCode() {
138
return (errorIndex << 16) | index;
139
}
140
141
/**
142
* Return a string representation of this ParsePosition.
143
* @return a string representation of this object
144
*/
145
public String toString() {
146
return getClass().getName() +
147
"[index=" + index +
148
",errorIndex=" + errorIndex + ']';
149
}
150
}
151
152