public static enum CIN10.Gender extends Enum<CIN10.Gender>
Modifier and Type | Method and Description |
---|---|
static CIN10.Gender |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CIN10.Gender[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CIN10.Gender MALE
public static final CIN10.Gender FEMALE
public static final CIN10.Gender UNKNOWN
public static CIN10.Gender[] values()
for (CIN10.Gender c : CIN10.Gender.values()) System.out.println(c);
public static CIN10.Gender 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 nullCopyright © 2025. All rights reserved.