public enum FTContents extends Enum<FTContents>
Enum Constant and Description |
---|
END
At end.
|
ENTIRE
Entire content.
|
START
At start.
|
Modifier and Type | Method and Description |
---|---|
String |
toString()
Returns a string representation.
|
static FTContents |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FTContents[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FTContents START
public static final FTContents END
public static final FTContents ENTIRE
public static FTContents[] values()
for (FTContents c : FTContents.values()) System.out.println(c);
public static FTContents 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<FTContents>
Copyright © 2005–2015 BaseX Team. All rights reserved.