public enum MetadataComponent extends Enum<MetadataComponent>
MetadataResult.| Enum Constant and Description |
|---|
COMPONENT
Component that retrieves metadata for an Operation or a Source.
|
ENTITY
Component that retrieves metadata about DSQL entities.
|
INPUT
Component that retrieves metadata for an Operation or Source parameter.
|
KEYS
Component that retrieves metadata about the keys.
|
OUTPUT_ATTRIBUTES
Component that retrieves metadata for an Operation or Source output attributes type.
|
OUTPUT_PAYLOAD
Component that retrieves metadata for an Operation or Source output type.
|
| Modifier and Type | Method and Description |
|---|---|
static MetadataComponent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MetadataComponent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetadataComponent OUTPUT_ATTRIBUTES
public static final MetadataComponent OUTPUT_PAYLOAD
public static final MetadataComponent INPUT
public static final MetadataComponent COMPONENT
public static final MetadataComponent ENTITY
public static final MetadataComponent KEYS
public static MetadataComponent[] values()
for (MetadataComponent c : MetadataComponent.values()) System.out.println(c);
public static MetadataComponent 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 © 2017 MuleSoft, Inc.. All rights reserved.