File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed
modules/lang-painless/src/main/resources/org/elasticsearch/painless Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change
1
+ pr : 112412
2
+ summary : Expose `HexFormat` in Painless
3
+ area : Infra/Scripting
4
+ type : enhancement
5
+ issues : []
Original file line number Diff line number Diff line change @@ -684,6 +684,24 @@ class java.util.Hashtable {
684
684
def clone()
685
685
}
686
686
687
+ class java.util.HexFormat {
688
+ HexFormat of()
689
+ HexFormat ofDelimiter(String)
690
+ HexFormat withDelimiter(String)
691
+ HexFormat withPrefix(String)
692
+ HexFormat withSuffix(String)
693
+ HexFormat withUpperCase()
694
+ HexFormat withLowerCase()
695
+ String delimiter()
696
+ String prefix()
697
+ String suffix()
698
+ boolean isUpperCase()
699
+ String formatHex(byte[])
700
+ String formatHex(byte[],int,int)
701
+ byte[] parseHex(CharSequence)
702
+ byte[] parseHex(CharSequence,int,int)
703
+ }
704
+
687
705
class java.util.IdentityHashMap {
688
706
()
689
707
(Map)
You can’t perform that action at this time.
0 commit comments