public enum DocumentationPolicy extends Enum<DocumentationPolicy>
Enum Constant and Description |
---|
AUTHORIZED
Only authorized users can see the documentation
|
INHERIT
Use the default value from the enclosing element
|
NONE
The resource is not documented
|
PUBLIC
Any user can see the documentation
|
Modifier and Type | Field and Description |
---|---|
static DocumentationPolicy |
DEFAULT
Default
DocumentationPolicy |
Modifier and Type | Method and Description |
---|---|
static DocumentationPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentationPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentationPolicy PUBLIC
public static final DocumentationPolicy AUTHORIZED
public static final DocumentationPolicy NONE
public static final DocumentationPolicy INHERIT
public static final DocumentationPolicy DEFAULT
DocumentationPolicy
public static DocumentationPolicy[] values()
for (DocumentationPolicy c : DocumentationPolicy.values()) System.out.println(c);
public static DocumentationPolicy 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 nullOracle REST Data Services Plugin API version: 3.0.0.65.09.35 Copyright © 2015 Oracle Corp. All Rights Reserved.