EnumWithValue<SMB2ImpersonationLevel>public enum SMB2ImpersonationLevel extends java.lang.Enum<SMB2ImpersonationLevel> implements EnumWithValue<SMB2ImpersonationLevel>
EnumWithValue.EnumUtils| Enum Constant | Description |
|---|---|
Anonymous |
|
Delegate |
|
Identification |
|
Impersonation |
| Modifier and Type | Method | Description |
|---|---|---|
long |
getValue() |
|
static SMB2ImpersonationLevel |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static SMB2ImpersonationLevel[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SMB2ImpersonationLevel Anonymous
public static final SMB2ImpersonationLevel Identification
public static final SMB2ImpersonationLevel Impersonation
public static final SMB2ImpersonationLevel Delegate
public static SMB2ImpersonationLevel[] values()
for (SMB2ImpersonationLevel c : SMB2ImpersonationLevel.values()) System.out.println(c);
public static SMB2ImpersonationLevel 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<SMB2ImpersonationLevel>