Module org.tquadrat.foundation.util
Class InetAddressStringConverter
java.lang.Object
org.tquadrat.foundation.util.stringconverter.InetAddressStringConverter
- All Implemented Interfaces:
Serializable
,StringConverter<InetAddress>
@ClassVersion(sourceVersion="$Id: InetAddressStringConverter.java 1060 2023-09-24 19:21:40Z tquadrat $")
@API(status=STABLE,
since="0.0.6")
public final class InetAddressStringConverter
extends Object
implements StringConverter<InetAddress>
The implementation of
The method
The method
StringConverter
for
InetAddress
values.The method
fromString(CharSequence)
will use
InetAddress.getByName(String)
to create a InetAddress
instance from the given value; this means,
that when a host name is given as an argument – instead of an IP4 or
IP6 address String – an
IllegalArgumentException
is thrown when that host is unknown (cannot be resolved by DNS). But
fromString()
will not accept null
or the empty String for
localhost
; for these values it will also throw an
IllegalArgumentException
.The method
toString(InetAddress)
uses
InetAddress.getHostAddress()
to get the IP address as a String.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: InetAddressStringConverter.java 1060 2023-09-24 19:21:40Z tquadrat $
- Since:
- 0.0.6
- See Also:
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.util.stringconverter.InetAddressStringConverter"
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final InetAddressStringConverter
An instance of this class.static final String
The error message about an invalid address or an unknown host name: "\'%1$s\' is invalid or unknown".Fields inherited from interface org.tquadrat.foundation.lang.StringConverter
METHOD_NAME_GetSubjectClass, METHOD_NAME_Provider
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new instance ofInetAddressStringConverter
. -
Method Summary
Modifier and TypeMethodDescriptionfinal InetAddress
fromString
(CharSequence source) static final InetAddressStringConverter
provider()
This method is used by theServiceLoader
to obtain the instance for thisStringConverter
implementation.final String
toString
(InetAddress source)
-
Field Details
-
MSG_InvalidAddress
The error message about an invalid address or an unknown host name: "\'%1$s\' is invalid or unknown".- See Also:
-
INSTANCE
An instance of this class.
-
-
Constructor Details
-
InetAddressStringConverter
public InetAddressStringConverter()Creates a new instance ofInetAddressStringConverter
.
-
-
Method Details
-
fromString
- Specified by:
fromString
in interfaceStringConverter<InetAddress>
- Throws:
IllegalArgumentException
-
provider
This method is used by theServiceLoader
to obtain the instance for thisStringConverter
implementation.- Returns:
- The instance for this
StringConverter
implementation.
-
toString
- Specified by:
toString
in interfaceStringConverter<InetAddress>
-