public enum Format extends Enum<Format>
列挙型定数と説明 |
---|
JSON
JSON format.
|
PROPERTIES
Java properties.
|
XML
XML format.
|
YAML
YAML format.
|
修飾子とタイプ | フィールドと説明 |
---|---|
Class<? extends Serializer> |
clazz
class object for serializer.
|
String |
description
Description.
|
String |
extension
Extention.
|
public static final Format PROPERTIES
public static final Format XML
public static final Format JSON
public static final Format YAML
public final String extension
public final String description
public final Class<? extends Serializer> clazz
public static Format[] values()
for(Format c: Format.values()) System.out.println(c);
public static Format valueOf(String name)
name
- 返される列挙型定数の名前。IllegalArgumentException
- この列挙型に、指定した名前の定数がない場合NullPointerException
- 引数がnullの場合Copyright © 2004-2016. All Rights Reserved.