This commit is contained in:
serso
2011-09-21 00:33:29 +04:00
parent 877412145b
commit 017d5907c2
14 changed files with 404 additions and 170 deletions

View File

@@ -0,0 +1,23 @@
/*
* Copyright (c) 2009-2011. Created by serso aka se.solovyev.
* For more information, please, contact se.solovyev@gmail.com
* or visit http://se.solovyev.org
*/
package org.solovyev.common.math;
import org.jetbrains.annotations.Nullable;
import org.solovyev.common.utils.Formatter;
/**
* User: serso
* Date: 9/20/11
* Time: 10:52 PM
*/
public class ValueOfFormatter<T> implements Formatter<T>{
@Override
public String formatValue(@Nullable T t) throws IllegalArgumentException {
return String.valueOf(t);
}
}