public interface VersionIdentifierFormatter extends Formatter<VersionIdentifier>
VersionIdentifier
.Modifier and Type | Method and Description |
---|---|
String |
format(VersionIdentifier value)
This method formats the given
value . |
String format(VersionIdentifier value)
Formatter
value
. StringBuilder
buffer = new StringBuilder();format
(value, buffer); return buffer.toString();
format
in interface Formatter<VersionIdentifier>
value
- is the value to format. May be null
.value
is null
, a legal implementation will return "null"
or "".Copyright © 2001–2016 mmm-Team. All rights reserved.