From 37190134993319c1b828e7033d700b69b80ef091 Mon Sep 17 00:00:00 2001 From: Markus KARG Date: Sat, 7 Oct 2023 14:22:37 +0000 Subject: [PATCH] Mentioning ByteOrder converter in docs --- docs/index.adoc | 2 +- docs/index.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/index.adoc b/docs/index.adoc index 26efd5b3..8d716e43 100644 --- a/docs/index.adoc +++ b/docs/index.adoc @@ -101,7 +101,7 @@ $ java Main -l 512 --pattern 2 The fields representing your parameters can be of any type. Basic types (`Integer`, `Boolean`, `Enum`, etc...) are supported by default and you can write type converters to support any other type (custom types, etc...). -In fact, JCommander provides a rather comprehensive set of built-in conversions for commonly used special types, just to name the most notable ones (list is incomplete): `char[]`, `File`, `Path`, `URI`, `URL`, `InetAddress`, `Date` (ISO 8601). +In fact, JCommander provides a rather comprehensive set of built-in conversions for commonly used special types, just to name the most notable ones (list is incomplete): `char[]`, `File`, `Path`, `URI`, `URL`, `InetAddress`, `Date` (ISO 8601), ByteOrder. === Boolean diff --git a/docs/index.html b/docs/index.html index bdd75d25..dfe4f675 100644 --- a/docs/index.html +++ b/docs/index.html @@ -889,7 +889,7 @@

2. Types of options

The fields representing your parameters can be of any type. Basic types (Integer, Boolean, Enum, etc…​) are supported by default and you can write type converters to support any other type (custom types, etc…​).

-

In fact, JCommander provides a rather comprehensive set of built-in conversions for commonly used special types, just to name the most notable ones (list is incomplete): char[], File, Path, URI, URL, InetAddress, Date (ISO 8601).

+

In fact, JCommander provides a rather comprehensive set of built-in conversions for commonly used special types, just to name the most notable ones (list is incomplete): char[], File, Path, URI, URL, InetAddress, Date (ISO 8601), ByteOrder.

2.1. Boolean

@@ -2204,7 +2204,7 @@

29. Download