public enum AccessType extends Enum<AccessType>
| Enum Constant and Description |
|---|
READ |
READ_WRITE |
UNKNOWN |
WRITE |
| Modifier and Type | Method and Description |
|---|---|
static AccessType |
fromType(char type) |
char |
getType() |
static AccessType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessType READ
public static final AccessType WRITE
public static final AccessType READ_WRITE
public static final AccessType UNKNOWN
public static AccessType[] values()
for (AccessType c : AccessType.values()) System.out.println(c);
public static AccessType 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 nullpublic char getType()
public static AccessType fromType(char type)
Copyright © 2016 Cask Data, Inc. Licensed under the Apache License, Version 2.0.