public static enum OtclCommandDto.CollectionDescriptor extends Enum<OtclCommandDto.CollectionDescriptor>
| Enum Constant and Description |
|---|
ARRAY
The array.
|
COLLECTION_MEMBER
The collection member.
|
LIST
The list.
|
MAP
The map.
|
MAP_KEY
The map key.
|
MAP_VALUE
The map value.
|
NORMAL
The normal.
|
QUEUE
The queue.
|
SET
The set.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isArray()
Checks if is array.
|
boolean |
isCollection()
Checks if is collection.
|
boolean |
isCollectionMember()
Checks if is collection member.
|
boolean |
isMap()
Checks if is map.
|
boolean |
isMapKey()
Checks if is map key.
|
boolean |
isMapValue()
Checks if is map value.
|
boolean |
isNormal()
Checks if is normal.
|
static OtclCommandDto.CollectionDescriptor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OtclCommandDto.CollectionDescriptor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OtclCommandDto.CollectionDescriptor NORMAL
public static final OtclCommandDto.CollectionDescriptor ARRAY
public static final OtclCommandDto.CollectionDescriptor LIST
public static final OtclCommandDto.CollectionDescriptor SET
public static final OtclCommandDto.CollectionDescriptor QUEUE
public static final OtclCommandDto.CollectionDescriptor COLLECTION_MEMBER
public static final OtclCommandDto.CollectionDescriptor MAP
public static final OtclCommandDto.CollectionDescriptor MAP_KEY
public static final OtclCommandDto.CollectionDescriptor MAP_VALUE
public static OtclCommandDto.CollectionDescriptor[] values()
for (OtclCommandDto.CollectionDescriptor c : OtclCommandDto.CollectionDescriptor.values()) System.out.println(c);
public static OtclCommandDto.CollectionDescriptor 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 boolean isNormal()
public boolean isCollection()
public boolean isArray()
public boolean isCollectionMember()
public boolean isMap()
public boolean isMapKey()
public boolean isMapValue()
Copyright © 2021. All rights reserved.