public static enum StreamWriter.Format extends Enum<StreamWriter.Format>
Enum Constant and Description |
---|
JSON |
RECORD |
RECORD_WITH_SESSION_PROPERTIES |
XML |
Modifier and Type | Method and Description |
---|---|
static StreamWriter.Format |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StreamWriter.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
protected abstract void |
writeImpl(PrintWriter printWriter,
StreamWriter writer,
Record record) |
public static final StreamWriter.Format RECORD
public static final StreamWriter.Format JSON
public static final StreamWriter.Format XML
public static final StreamWriter.Format RECORD_WITH_SESSION_PROPERTIES
public static StreamWriter.Format[] values()
for (StreamWriter.Format c : StreamWriter.Format.values()) System.out.println(c);
public static StreamWriter.Format 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 nullprotected abstract void writeImpl(PrintWriter printWriter, StreamWriter writer, Record record) throws Throwable
Throwable
Copyright (c) 2006-2024 North Concepts Inc. All Rights Reserved.