com.anrisoftware.globalpom.format.degree.DegreeSexagesimalFormatLogger Maven / Gradle / Ivy
/*
* Copyright 2016 Erwin Müller
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.anrisoftware.globalpom.format.degree;
import static com.anrisoftware.globalpom.format.degree.DegreeSexagesimalFormatLogger._.error_parse;
import static com.anrisoftware.globalpom.format.degree.DegreeSexagesimalFormatLogger._.error_parse1;
import static com.anrisoftware.globalpom.format.degree.DegreeSexagesimalFormatLogger._.error_parse_number;
import static java.lang.String.format;
import java.text.ParseException;
import java.text.ParsePosition;
import com.anrisoftware.globalpom.log.AbstractLogger;
/**
* Logging messages for {@link DegreeSexagesimalFormat}.
*
* @author Erwin Mueller, [email protected]
* @since 1.9
*/
class DegreeSexagesimalFormatLogger extends AbstractLogger {
enum _ {
error_parse("Error parse source degree sexagesimal"),
error_parse1("Error parse source '{}' as degree sexagesimal."),
error_parse_number("Error parse source '{}' as number.");
private String name;
private _(String name) {
this.name = name;
}
@Override
public String toString() {
return name;
}
}
/**
* Create logger for {@link DegreeSexagesimalFormat}.
*/
DegreeSexagesimalFormatLogger() {
super(DegreeSexagesimalFormat.class);
}
ParseException errorParse(String source, ParsePosition pos) {
return logException(
new ParseException(format(error_parse.toString(), source),
pos.getErrorIndex()), error_parse1, source);
}
void checkMatches(boolean matches, String source, ParsePosition pos)
throws ParseException {
if (!matches) {
throw logException(
new ParseException(format(error_parse.toString(), source),
pos.getErrorIndex()), error_parse1, source);
}
}
void errorParseNumber(NumberFormatException e, String source) {
logException(e, error_parse_number, source);
}
}