-
- All Known Implementing Classes:
JsonFormatProvider
,JsonpFormatProvider
,StaxFormatProvider
,TvmXmlFormatProvider
public interface StructuredFormatProvider
Factory to create instances ofStructuredFormat
.- Since:
- 1.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StructuredFormat
create()
StructuredFormat
create(MarshallingConfig config)
String
getId()
-
-
-
Method Detail
-
getId
String getId()
- Returns:
- the
ID
of theStructuredFormat
tocreate()
.
-
create
StructuredFormat create()
- Returns:
- a new
StructuredFormat
forthis
format using default configuration.
-
create
StructuredFormat create(MarshallingConfig config)
- Parameters:
config
- theMarshallingConfig
to customize the format.- Returns:
- a new
StructuredFormat
forthis
format using the givenconfig
.
-
-