/*
 * Copyright (c) 2011-2017 Contributors to the Eclipse Foundation
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
 * which is available at https://www.apache.org/licenses/LICENSE-2.0.
 *
 * SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
 */

package io.vertx.core.cli.converters;


A converter for character. Unlike other primitive types, characters cannot be created using 'valueOf'. Notice that only input having a length of 1 can be converted to characters. Other inputs are rejected.
Author:Clement Escoffier
/** * A converter for character. Unlike other primitive types, characters cannot be created using 'valueOf'. Notice that * only input having a length of 1 can be converted to characters. Other inputs are rejected. * * @author Clement Escoffier <clement@apache.org> */
public final class CharacterConverter implements Converter<Character> {
The converter.
/** * The converter. */
public static final CharacterConverter INSTANCE = new CharacterConverter(); private CharacterConverter() { // No direct instantiation } @Override public Character fromString(String input) throws IllegalArgumentException { if (input == null) { throw new NullPointerException("input must not be null"); } if (input.length() != 1) { throw new IllegalArgumentException("The input string \"" + input + "\" cannot be converted to a " + "character. The input's length must be 1"); } return input.toCharArray()[0]; } }