Package org.sim0mq.message
Enum Class StringEncoding
- All Implemented Interfaces:
Serializable
,Comparable<StringEncoding>
,Constable
String encoding indicating UTF8 or UTF16 strings.
Copyright (c) 2013-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See Sim0MQ License.
- Author:
- Alexander Verbraeck
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
isUTF16()
Return whether the string encoding is UTF16.boolean
isUTF8()
Return whether the string encoding is UTF8.static StringEncoding
Returns the enum constant of this class with the specified name.static StringEncoding[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UTF8
8 bits String and char encoding. -
UTF16
16 bits String and char encoding.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
isUTF8
public boolean isUTF8()Return whether the string encoding is UTF8.- Returns:
- boolean; indicates whether the String encoding is UTF8
-
isUTF16
public boolean isUTF16()Return whether the string encoding is UTF16.- Returns:
- boolean; indicates whether the String encoding is UTF16
-