public static enum KLVObject.KeyFormat extends Enum<KLVObject.KeyFormat>
| Enum Constant and Description |
|---|
KEY_1_BYTE |
KEY_2_BYTE |
KEY_4_BYTE |
KEY_AUTO |
KEY_NONE |
| Modifier and Type | Method and Description |
|---|---|
static KLVObject.KeyFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KLVObject.KeyFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KLVObject.KeyFormat KEY_NONE
public static final KLVObject.KeyFormat KEY_1_BYTE
public static final KLVObject.KeyFormat KEY_2_BYTE
public static final KLVObject.KeyFormat KEY_AUTO
public static final KLVObject.KeyFormat KEY_4_BYTE
public static KLVObject.KeyFormat[] values()
for (KLVObject.KeyFormat c : KLVObject.KeyFormat.values()) System.out.println(c);
public static KLVObject.KeyFormat 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 null(c)2007-2016 Richard Cartwright, all rights reserved. Licensed under Apache 2 license and subject to the AMWA IPR policy.