public enum VidTypeEnum extends Enum<VidTypeEnum>
| Enum Constant and Description |
|---|
INT
INT vertex id
|
STRING
STRING vertex id
|
| Modifier and Type | Method and Description |
|---|---|
static VidTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VidTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
String |
vidType() |
public static final VidTypeEnum INT
public static final VidTypeEnum STRING
public static VidTypeEnum[] values()
for (VidTypeEnum c : VidTypeEnum.values()) System.out.println(c);
public static VidTypeEnum 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 vidType()
Copyright © 2023. All rights reserved.