public enum SMB2ShareAccess extends java.lang.Enum<SMB2ShareAccess> implements EnumWithValue<SMB2ShareAccess>
EnumWithValue.EnumUtils| Enum Constant and Description |
|---|
FILE_SHARE_DELETE |
FILE_SHARE_READ |
FILE_SHARE_WRITE |
| Modifier and Type | Method and Description |
|---|---|
long |
getValue() |
static SMB2ShareAccess |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SMB2ShareAccess[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SMB2ShareAccess FILE_SHARE_READ
public static final SMB2ShareAccess FILE_SHARE_WRITE
public static final SMB2ShareAccess FILE_SHARE_DELETE
public static SMB2ShareAccess[] values()
for (SMB2ShareAccess c : SMB2ShareAccess.values()) System.out.println(c);
public static SMB2ShareAccess valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic long getValue()
getValue in interface EnumWithValue<SMB2ShareAccess>