public static enum BlobEndpointBuilderFactory.BlobType extends Enum<BlobEndpointBuilderFactory.BlobType>
org.apache.camel.component.azure.storage.blob.BlobType enum.| Enum Constant and Description |
|---|
appendblob |
blockblob |
pageblob |
| Modifier and Type | Method and Description |
|---|---|
static BlobEndpointBuilderFactory.BlobType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlobEndpointBuilderFactory.BlobType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlobEndpointBuilderFactory.BlobType blockblob
public static final BlobEndpointBuilderFactory.BlobType appendblob
public static final BlobEndpointBuilderFactory.BlobType pageblob
public static BlobEndpointBuilderFactory.BlobType[] values()
for (BlobEndpointBuilderFactory.BlobType c : BlobEndpointBuilderFactory.BlobType.values()) System.out.println(c);
public static BlobEndpointBuilderFactory.BlobType 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 nullApache Camel