/*
* Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package javafx.util.converter;
import javafx.util.StringConverter;
/**
*
{@link StringConverter} implementation for {@link Byte}
* (and byte primitive) values.
* @since JavaFX 2.1
*/
public class ByteStringConverter extends StringConverter {
/** {@inheritDoc} */
@Override public Byte fromString(String value) {
// If the specified value is null or zero-length, return null
if (value == null) {
return null;
}
value = value.trim();
if (value.length() < 1) {
return null;
}
return Byte.valueOf(value);
}
/** {@inheritDoc} */
@Override public String toString(Byte value) {
// If the specified value is null, return a zero-length String
if (value == null) {
return "";
}
return Byte.toString(value.byteValue());
}
}