org.bbottema.javareflection.valueconverter.converters.CharacterConverters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-reflection Show documentation
Show all versions of java-reflection Show documentation
Java Reflection provides a small package with nifty reflection features that will help with finding constructors, methods and value conversions
/*
* Copyright (C) ${project.inceptionYear} Benny Bottema ([email protected])
*
* 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 org.bbottema.javareflection.valueconverter.converters;
import lombok.experimental.UtilityClass;
import org.bbottema.javareflection.util.Function;
import org.bbottema.javareflection.util.Function.Functions;
import org.bbottema.javareflection.valueconverter.ValueFunction;
import org.bbottema.javareflection.valueconverter.ValueFunction.ValueFunctionImpl;
import java.util.ArrayList;
import java.util.Collection;
/**
* Attempts to convert a Character
to the target datatype.
*
* Conversions are as follows:
*
* - String:
value.toString()
* - Character (or primitive character):
value
* - Number (or primitive number): Deferred to ({@link Character#getNumericValue(char)}) or cast to {@code int} if not in number
* 0-9 range.
* - Boolean (or boolean):
!value.equals('0')
*
*/
@UtilityClass
public final class CharacterConverters {
public static final Collection> CHARACTER_CONVERTERS = produceCharacterConverters();
private static Collection> produceCharacterConverters() {
ArrayList> converters = new ArrayList<>();
converters.add(new ValueFunctionImpl<>(char.class, Character.class, Functions.identity()));
converters.add(new ValueFunctionImpl<>(Character.class, char.class, Functions.identity()));
converters.add(new ValueFunctionImpl<>(char.class, char.class, Functions.identity()));
converters.add(new ValueFunctionImpl<>(Character.class, Character.class, Functions.identity()));
converters.add(new ValueFunctionImpl<>(Character.class, String.class, Functions.simpleToString()));
converters.add(new ValueFunctionImpl<>(Character.class, Number.class, new CharacterToNumberFunction()));
converters.add(new ValueFunctionImpl<>(Character.class, Boolean.class, new CharacterToBooleanFunction()));
return converters;
}
private static class CharacterToNumberFunction implements Function {
@Override
public Number apply(Character value) {
int numericValue = Character.getNumericValue(value);
return numericValue == -1 || numericValue > 9
? (int) value
: numericValue;
}
}
private static class CharacterToBooleanFunction implements Function {
@Override
public Boolean apply(Character value) {
return !value.equals('0');
}
}
}