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