All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.unix4j.convert.StringConverters Maven / Gradle / Ivy

There is a newer version: 0.6
Show newest version
package org.unix4j.convert;

public class StringConverters {
	public static final ValueConverter DEFAULT = new ValueConverter() {
		@Override
		public String convert(Object value) throws IllegalArgumentException {
			if (value != null) {
				return value.toString();
			}
			return null;
		}
	};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy