public enum CannedUdfAcl extends Enum<CannedUdfAcl>
| Enum Constant and Description |
|---|
Private
Only the owner has the access.
|
Public
All users have the access, not recommended.
|
| Modifier and Type | Method and Description |
|---|---|
static CannedUdfAcl |
parse(String acl) |
String |
toString() |
static CannedUdfAcl |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CannedUdfAcl[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CannedUdfAcl Private
public static final CannedUdfAcl Public
public static CannedUdfAcl[] values()
for (CannedUdfAcl c : CannedUdfAcl.values()) System.out.println(c);
public static CannedUdfAcl 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 String toString()
toString in class Enum<CannedUdfAcl>public static CannedUdfAcl parse(String acl)
Copyright © 2021. All Rights Reserved.