public enum Delimiter extends Enum<Delimiter>
Tab
.Enum Constant and Description |
---|
Carriage_Return
Represents a carriage return delimiter.
|
Colon
Represents a colon delimiter.
|
Comma
Represents a comma delimiter.
|
Line_Feed
Represents a line feed delimiter.
|
Pipe
Represents a pipe delimiter.
|
Semi_Colon
Represents a semi-colon delimiter.
|
Space
Represents a space delimiter.
|
Tab
Represents a tab delimiter.
|
Modifier and Type | Method and Description |
---|---|
String |
getValue()
Returns a string value that specifies the delimiter enumeration value.
|
static Delimiter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Delimiter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Delimiter Comma
public static final Delimiter Carriage_Return
public static final Delimiter Line_Feed
public static final Delimiter Tab
public static final Delimiter Pipe
public static final Delimiter Space
public static final Delimiter Semi_Colon
public static final Delimiter Colon
public static Delimiter[] values()
for (Delimiter c : Delimiter.values()) System.out.println(c);
public static Delimiter 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 getValue()
Copyright © 1982–2022 Adobe Systems Inc.. All rights reserved.