static enum GitDateParser.ParseableSimpleDateFormat extends java.lang.Enum<GitDateParser.ParseableSimpleDateFormat>
Enum Constant and Description |
---|
DEFAULT |
ISO |
LOCAL |
RFC |
SHORT |
SHORT_WITH_DOTS |
SHORT_WITH_DOTS_REVERSE |
SHORT_WITH_SLASH |
Modifier and Type | Field and Description |
---|---|
(package private) java.lang.String |
formatStr |
Modifier and Type | Method and Description |
---|---|
static GitDateParser.ParseableSimpleDateFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GitDateParser.ParseableSimpleDateFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GitDateParser.ParseableSimpleDateFormat ISO
public static final GitDateParser.ParseableSimpleDateFormat RFC
public static final GitDateParser.ParseableSimpleDateFormat SHORT
public static final GitDateParser.ParseableSimpleDateFormat SHORT_WITH_DOTS_REVERSE
public static final GitDateParser.ParseableSimpleDateFormat SHORT_WITH_DOTS
public static final GitDateParser.ParseableSimpleDateFormat SHORT_WITH_SLASH
public static final GitDateParser.ParseableSimpleDateFormat DEFAULT
public static final GitDateParser.ParseableSimpleDateFormat LOCAL
public static GitDateParser.ParseableSimpleDateFormat[] values()
for (GitDateParser.ParseableSimpleDateFormat c : GitDateParser.ParseableSimpleDateFormat.values()) System.out.println(c);
public static GitDateParser.ParseableSimpleDateFormat valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null