|
| 1 | +package com.ultreon.mods.advanceddebug.api.client.formatter; |
| 2 | + |
| 3 | +@SuppressWarnings("UnusedReturnValue") |
| 4 | +public interface IFormatterContext { |
| 5 | + IFormatterContext keyword(String text); |
| 6 | + |
| 7 | + IFormatterContext number(String text); |
| 8 | + |
| 9 | + IFormatterContext number(Number number); |
| 10 | + |
| 11 | + IFormatterContext string(String text); |
| 12 | + |
| 13 | + IFormatterContext stringEscape(String text); |
| 14 | + |
| 15 | + IFormatterContext operator(String text); |
| 16 | + |
| 17 | + IFormatterContext identifier(String text); |
| 18 | + |
| 19 | + IFormatterContext parameter(String text); |
| 20 | + |
| 21 | + IFormatterContext parameter(String text, Object value); |
| 22 | + |
| 23 | + IFormatterContext comment(String text); |
| 24 | + |
| 25 | + IFormatterContext error(String text); |
| 26 | + |
| 27 | + IFormatterContext className(String text); |
| 28 | + |
| 29 | + IFormatterContext enumConstant(Enum<?> enumValue); |
| 30 | + |
| 31 | + IFormatterContext enumConstant(String text); |
| 32 | + |
| 33 | + IFormatterContext packageName(String text); |
| 34 | + |
| 35 | + IFormatterContext methodName(String text); |
| 36 | + |
| 37 | + IFormatterContext functionName(String text); |
| 38 | + |
| 39 | + IFormatterContext callName(String text); |
| 40 | + |
| 41 | + IFormatterContext field(String text); |
| 42 | + |
| 43 | + IFormatterContext annotation(String text); |
| 44 | + |
| 45 | + IFormatterContext normal(String text); |
| 46 | + |
| 47 | + IFormatterContext classValue(Class<?> clazz); |
| 48 | + |
| 49 | + IFormatterContext space(); |
| 50 | + |
| 51 | + IFormatterContext separator(); |
| 52 | + |
| 53 | + IFormatterContext hex(String hexString); |
| 54 | + |
| 55 | + IFormatterContext hexValue(int number); |
| 56 | + |
| 57 | + IFormatterContext intValue(int number); |
| 58 | + |
| 59 | + IFormatterContext longValue(long number); |
| 60 | + |
| 61 | + IFormatterContext floatValue(float number); |
| 62 | + |
| 63 | + IFormatterContext doubleValue(double number); |
| 64 | + |
| 65 | + IFormatterContext stringEscaped(String text); |
| 66 | + |
| 67 | + IFormatterContext charsEscaped(String text); |
| 68 | + |
| 69 | + IFormatterContext other(Object e); |
| 70 | +} |
0 commit comments