public static enum EmbeddedTypeMetadata.Container extends Enum<EmbeddedTypeMetadata.Container>
Enum Constant and Description |
---|
ARRAY |
COLLECTION |
MAP |
OBJECT |
Modifier and Type | Method and Description |
---|---|
static EmbeddedTypeMetadata.Container |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EmbeddedTypeMetadata.Container[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EmbeddedTypeMetadata.Container OBJECT
public static final EmbeddedTypeMetadata.Container COLLECTION
public static final EmbeddedTypeMetadata.Container MAP
public static final EmbeddedTypeMetadata.Container ARRAY
public static EmbeddedTypeMetadata.Container[] values()
for (EmbeddedTypeMetadata.Container c : EmbeddedTypeMetadata.Container.values()) System.out.println(c);
public static EmbeddedTypeMetadata.Container 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 © 2006-2017 Red Hat, Inc. All Rights Reserved