MCPcopy Create free account
hub / github.com/MenoData/Time4J / parse

Method parse

base/src/main/java/net/time4j/AmPmElement.java:171–186  ·  view source on GitHub ↗
(
        CharSequence text,
        ParsePosition status,
        AttributeQuery attributes
    )

Source from the content-addressed store, hash-verified

169 }
170
171 @Override
172 public Meridiem parse(
173 CharSequence text,
174 ParsePosition status,
175 AttributeQuery attributes
176 ) {
177
178 Meridiem m = parseAmPm(text, status);
179
180 if (m == null) {
181 m = this.accessor(attributes).parse(text, status, this.getType(), attributes);
182 }
183
184 return m;
185
186 }
187
188 @Override
189 public void print(

Callers

nothing calls this directly

Calls 4

parseAmPmMethod · 0.95
accessorMethod · 0.95
getTypeMethod · 0.95
parseMethod · 0.65

Tested by

no test coverage detected