public static enum Redis.RedisFormat extends java.lang.Enum<Redis.RedisFormat>
| Enum Constant and Description |
|---|
JSON_INTERACTION
The current default format, where each payload contains only basic interaction JSON document.
|
JSON_INTERACTION_META
The payload is a full interaction with augmentations.
|
| Modifier and Type | Method and Description |
|---|---|
static Redis.RedisFormat |
fromStr(java.lang.String str) |
static Redis.RedisFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Redis.RedisFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Redis.RedisFormat JSON_INTERACTION
public static final Redis.RedisFormat JSON_INTERACTION_META
public static Redis.RedisFormat[] values()
for (Redis.RedisFormat c : Redis.RedisFormat.values()) System.out.println(c);
public static Redis.RedisFormat valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static Redis.RedisFormat fromStr(java.lang.String str)
Copyright © 2017. All Rights Reserved.