public enum QueryConstants extends Enum<QueryConstants>
| Enum Constant and Description | 
|---|
| KEY_ATTRIBUTE_NAMEAttribute name of the key. | 
| THIS_ATTRIBUTE_NAMEAttribute name of the "this". | 
| Modifier and Type | Method and Description | 
|---|---|
| String | value() | 
| static QueryConstants | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static QueryConstants[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final QueryConstants KEY_ATTRIBUTE_NAME
public static final QueryConstants THIS_ATTRIBUTE_NAME
public static QueryConstants[] values()
for (QueryConstants c : QueryConstants.values()) System.out.println(c);
public static QueryConstants 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 String value()
Copyright © 2021 Hazelcast, Inc.. All rights reserved.