public static enum Doc.FillMode extends Enum<Doc.FillMode>
| Enum Constant and Description |
|---|
FORCED
|
INDEPENDENT
If a
Level will not fit on one line, its INDEPENDENT Doc.Breaks will be
broken independently of each other, to fill in the Level. |
UNIFIED
|
| Modifier and Type | Method and Description |
|---|---|
static Doc.FillMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Doc.FillMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Doc.FillMode UNIFIED
public static final Doc.FillMode INDEPENDENT
Level will not fit on one line, its INDEPENDENT Doc.Breaks will be
broken independently of each other, to fill in the Level.public static final Doc.FillMode FORCED
public static Doc.FillMode[] values()
for (Doc.FillMode c : Doc.FillMode.values()) System.out.println(c);
public static Doc.FillMode 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.