public enum AccessListType extends Enum<AccessListType>
| Enum Constant and Description |
|---|
PRIVATE
individual for each entity
|
SHARED
used by multiple entities
|
TEMPLATE
template
|
| Modifier and Type | Method and Description |
|---|---|
static AccessListType |
of(int intValue) |
static AccessListType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessListType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessListType PRIVATE
public static final AccessListType SHARED
public static final AccessListType TEMPLATE
public static AccessListType[] values()
for (AccessListType c : AccessListType.values()) System.out.println(c);
public static AccessListType 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 static AccessListType of(int intValue)
Copyright © 2018–2021 Tesler. All rights reserved.