Fix JavaDoc problems in Conversion

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1582687 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2014-03-28 10:49:04 +00:00
parent d7e2aa2504
commit dba302513c
1 changed files with 4 additions and 2 deletions

View File

@ -26,11 +26,12 @@ import java.util.UUID;
* Static methods to convert a type into another, with endianness and bit ordering awareness. * Static methods to convert a type into another, with endianness and bit ordering awareness.
* </p> * </p>
* <p> * <p>
* The methods names follow a naming rule:</br> * The methods names follow a naming rule:<br>
* {@code <source type>[source endianness][source bit ordering]To<destination type>[destination endianness][destination bit ordering]} * {@code <source type>[source endianness][source bit ordering]To<destination type>[destination endianness][destination bit ordering]}
* </p> * </p>
* <p> * <p>
* Source/destination type fields is one of the following: * Source/destination type fields is one of the following:
* </p>
* <ul> * <ul>
* <li>binary: an array of booleans</li> * <li>binary: an array of booleans</li>
* <li>byte or byteArray</li> * <li>byte or byteArray</li>
@ -40,8 +41,9 @@ import java.util.UUID;
* <li>hexDigit: a Char containing a hexadecimal digit (lowercase in destination)</li> * <li>hexDigit: a Char containing a hexadecimal digit (lowercase in destination)</li>
* <li>uuid</li> * <li>uuid</li>
* </ul> * </ul>
* <p>
* Endianness field: little endian is the default, in this case the field is absent. In case of * Endianness field: little endian is the default, in this case the field is absent. In case of
* big endian, the field is "Be".</br> Bit ordering: Lsb0 is the default, in this case the field * big endian, the field is "Be".<br> Bit ordering: Lsb0 is the default, in this case the field
* is absent. In case of Msb0, the field is "Msb0". * is absent. In case of Msb0, the field is "Msb0".
* </p> * </p>
* <p> * <p>