public enum OfferLogFormatVersion extends Enum<OfferLogFormatVersion>
Enum Constant and Description |
---|
V1
Deprecated.
|
V2
Write offer logs are stored only AFTER successful object storage in CAS (pessimistic)
|
Modifier and Type | Method and Description |
---|---|
static OfferLogFormatVersion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OfferLogFormatVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OfferLogFormatVersion V1
public static final OfferLogFormatVersion V2
public static OfferLogFormatVersion[] values()
for (OfferLogFormatVersion c : OfferLogFormatVersion.values()) System.out.println(c);
public static OfferLogFormatVersion 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 © 2019 Vitam. All rights reserved.