Package org.apache.commons.io
Class ByteOrderParser
- java.lang.Object
-
- org.apache.commons.io.ByteOrderParser
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ByteOrderparseByteOrder(String value)Parses the String argument as aByteOrder.
-
-
-
Method Detail
-
parseByteOrder
public static ByteOrder parseByteOrder(String value)
Parses the String argument as aByteOrder.Returns
ByteOrder.LITTLE_ENDIANif the given value is"LITTLE_ENDIAN".Returns
Examples:ByteOrder.BIG_ENDIANif the given value is"BIG_ENDIAN".ByteOrderParser.parseByteOrder("LITTLE_ENDIAN")returnsByteOrder.LITTLE_ENDIANByteOrderParser.parseByteOrder("BIG_ENDIAN")returnsByteOrder.BIG_ENDIAN
- Parameters:
value- theStringcontaining the ByteOrder representation to be parsed- Returns:
- the ByteOrder represented by the string argument
- Throws:
IllegalArgumentException- if theStringcontaining the ByteOrder representation to be parsed is unknown.
-
-