public static enum RemoveUnusedImports.JavadocOnlyImports extends Enum<RemoveUnusedImports.JavadocOnlyImports>
Enum Constant and Description |
---|
KEEP
Keep imports that are only used in javadoc.
|
REMOVE
Remove imports that are only used in javadoc, and fully qualify any
@link tags. |
Modifier and Type | Method and Description |
---|---|
static RemoveUnusedImports.JavadocOnlyImports |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RemoveUnusedImports.JavadocOnlyImports[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemoveUnusedImports.JavadocOnlyImports REMOVE
@link
tags.public static final RemoveUnusedImports.JavadocOnlyImports KEEP
public static RemoveUnusedImports.JavadocOnlyImports[] values()
for (RemoveUnusedImports.JavadocOnlyImports c : RemoveUnusedImports.JavadocOnlyImports.values()) System.out.println(c);
public static RemoveUnusedImports.JavadocOnlyImports 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 nullCopyright © 2015–2017 Google Inc.. All rights reserved.