public enum CIJackson extends Enum<CIJackson>
| Modifier and Type | Method and Description |
|---|---|
static byte[] |
toJsonBytes(Object value) |
static String |
toJsonString(Object value) |
static CIJackson |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CIJackson[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static CIJackson[] values()
for (CIJackson c : CIJackson.values()) System.out.println(c);
public static CIJackson valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static byte[] toJsonBytes(Object value)
Copyright © 2024. All rights reserved.