com.lambdaworks.redis.protocol.CommandKeyword Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redisson Show documentation
Show all versions of redisson Show documentation
Redis Java client with features of In-Memory Data Grid
// Copyright (C) 2011 - Will Glozer. All rights reserved.
package com.lambdaworks.redis.protocol;
/**
* Keyword modifiers for redis commands.
*
* @author Will Glozer
*/
public enum CommandKeyword {
AFTER, AGGREGATE, ALPHA, AND, ASC, BEFORE, BY, COUNT, DESC, ENCODING, FLUSH,
GETNAME, IDLETIME, KILL, LEN, LIMIT, LIST, LOAD, MAX, MIN, NO, NOSAVE, NOT,
ONE, OR, REFCOUNT, RESET, RESETSTAT, SETNAME, STORE, SUM, WEIGHTS,
WITHSCORES, XOR, NODES;
public byte[] bytes;
private CommandKeyword() {
bytes = name().getBytes(Charsets.ASCII);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy