HexFormat.OfDelimiter(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a hexadecimal formatter with the delimiter and lowercase characters.
[Android.Runtime.Register("ofDelimiter", "(Ljava/lang/String;)Ljava/util/HexFormat;", "", ApiSince=34)]
public static Java.Util.HexFormat? OfDelimiter (string? delimiter);
[<Android.Runtime.Register("ofDelimiter", "(Ljava/lang/String;)Ljava/util/HexFormat;", "", ApiSince=34)>]
static member OfDelimiter : string -> Java.Util.HexFormat
Parameters
- delimiter
- String
a delimiter, non-null, may be empty
Returns
a HexFormat
with the delimiter and lowercase characters
- Attributes
Remarks
Returns a hexadecimal formatter with the delimiter and lowercase characters. The prefix and suffix are empty. The methods #withDelimiter(String) withDelimiter
, #withUpperCase() withUpperCase
, #withLowerCase() withLowerCase
, #withPrefix(String) withPrefix
, and #withSuffix(String) withSuffix
return copies of formatters with new parameters.
Java documentation for java.util.HexFormat.ofDelimiter(java.lang.String)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.