public enum Fitzpatrick extends Enum<Fitzpatrick>
| Enum Constant and Description |
|---|
TYPE_1_2
Fitzpatrick modifier of type 1/2 (pale white/white)
|
TYPE_3
Fitzpatrick modifier of type 3 (cream white)
|
TYPE_4
Fitzpatrick modifier of type 4 (moderate brown)
|
TYPE_5
Fitzpatrick modifier of type 5 (dark brown)
|
TYPE_6
Fitzpatrick modifier of type 6 (black)
|
| Modifier and Type | Field and Description |
|---|---|
String |
unicode
The unicode representation of the Fitzpatrick modifier
|
| Modifier and Type | Method and Description |
|---|---|
static Fitzpatrick |
fitzpatrickFromType(String type) |
static Fitzpatrick |
fitzpatrickFromUnicode(String unicode) |
static Fitzpatrick |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Fitzpatrick[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Fitzpatrick TYPE_1_2
public static final Fitzpatrick TYPE_3
public static final Fitzpatrick TYPE_4
public static final Fitzpatrick TYPE_5
public static final Fitzpatrick TYPE_6
public final String unicode
public static Fitzpatrick[] values()
for (Fitzpatrick c : Fitzpatrick.values()) System.out.println(c);
public static Fitzpatrick 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 static Fitzpatrick fitzpatrickFromUnicode(String unicode)
public static Fitzpatrick fitzpatrickFromType(String type)
Copyright © 2019. All rights reserved.