Uses of Class
org.apache.juneau.serializer.Serializer
Packages that use Serializer
Package
Description
CSV Marshalling Support
HTTP Entity Beans
REST Server API
REST Client API
REST Server Mock API
- 
Uses of Serializer in org.apache.juneau.configMethods in org.apache.juneau.config with parameters of type SerializerModifier and TypeMethodDescriptionConfig.set(String key, Object value, Serializer serializer) Same asConfig.set(String, Object)but allows you to specify the serializer to use to serialize the value.Config.set(String key, Object value, Serializer serializer, String modifiers, String comment, List<String> preLines) Same asConfig.set(String, Object)but allows you to specify all aspects of a value.
- 
Uses of Serializer in org.apache.juneau.csvSubclasses of Serializer in org.apache.juneau.csv
- 
Uses of Serializer in org.apache.juneau.examples.serializerSubclasses of Serializer in org.apache.juneau.examples.serializerModifier and TypeClassDescriptionclassExample serializer that convertsBufferedImageobjects to byte streams.
- 
Uses of Serializer in org.apache.juneau.htmlSubclasses of Serializer in org.apache.juneau.htmlModifier and TypeClassDescriptionclassSerializes POJOs to HTTP responses as HTML documents.classSerializes POJO metamodels to HTML.classSerializes POJO metamodels to HTML.static classDefault serializer, with whitespace.static classDefault serializer, single quotes, simple mode.static classDefault serializer, single quotes, simple mode, with whitespace.classSerializes POJO models to HTML.static classDefault serializer, single quotes.static classDefault serializer, single quotes, whitespace added.classSerializes POJOs to HTTP responses as stripped HTML.
- 
Uses of Serializer in org.apache.juneau.httpMethods in org.apache.juneau.http with parameters of type SerializerModifier and TypeMethodDescriptionstatic final SerializedEntityHttpEntities.serializedEntity(Object content, Serializer serializer) Creates a newSerializedEntityobject.static final SerializedEntityHttpEntities.serializedEntity(Object content, Serializer serializer, HttpPartSchema schema) Creates a newSerializedEntityobject.static final SerializedEntityHttpEntities.serializedEntity(Supplier<?> content, Serializer serializer) Creates a newSerializedEntityobject.static final SerializedEntityHttpEntities.serializedEntity(Supplier<?> content, Serializer serializer, HttpPartSchema schema) Creates a newSerializedEntityobject.
- 
Uses of Serializer in org.apache.juneau.http.entityMethods in org.apache.juneau.http.entity with parameters of type SerializerModifier and TypeMethodDescriptionSerializedEntity.copyWith(Serializer serializer, HttpPartSchema schema) Copies this bean and sets the serializer and schema on it.SerializedEntity.setSerializer(Serializer value) Sets the serializer on this entity bean.Constructors in org.apache.juneau.http.entity with parameters of type SerializerModifierConstructorDescriptionSerializedEntity(ContentType contentType, Object content, Serializer serializer, HttpPartSchema schema) Constructor.
- 
Uses of Serializer in org.apache.juneau.jsonSubclasses of Serializer in org.apache.juneau.jsonModifier and TypeClassDescriptionclassSerializes POJO models to Simplified JSON.static classDefault serializer, single quotes, simple mode, with whitespace.classSerializes POJO metadata to HTTP responses as JSON-Schema.static classDefault serializer, with whitespace.static classDefault serializer, single quotes, simple mode.static classDefault serializer, single quotes, simple mode, with whitespace.classSerializes POJO models to JSON.static classDefault serializer, with whitespace.static classDefault serializer, single quotes, simple mode, with whitespace and recursion detection.
- 
Uses of Serializer in org.apache.juneau.marshallerMethods in org.apache.juneau.marshaller that return SerializerModifier and TypeMethodDescriptionMarshaller.getSerializer()Returns the serializer associated with this marshaller.Constructors in org.apache.juneau.marshaller with parameters of type Serializer
- 
Uses of Serializer in org.apache.juneau.msgpackSubclasses of Serializer in org.apache.juneau.msgpackModifier and TypeClassDescriptionclassSerializes POJO models to MessagePack.static classDefault serializer, BASE64 string output.static classDefault serializer, spaced-hex string output.
- 
Uses of Serializer in org.apache.juneau.oapiSubclasses of Serializer in org.apache.juneau.oapiModifier and TypeClassDescriptionclassSerializes POJOs to values suitable for transmission as HTTP headers, query/form-data parameters, and path variables.
- 
Uses of Serializer in org.apache.juneau.plaintextSubclasses of Serializer in org.apache.juneau.plaintextModifier and TypeClassDescriptionclassSerializes POJOs to plain text using just thetoString() method on the serialized object.
- 
Uses of Serializer in org.apache.juneau.restMethods in org.apache.juneau.rest with parameters of type SerializerModifier and TypeMethodDescriptionRestContext.Builder.serializers(Serializer... value) Adds one or more serializers to this class.RestOpContext.Builder.serializers(Serializer... value) Adds one or more serializers to this operation.
- 
Uses of Serializer in org.apache.juneau.rest.clientMethods in org.apache.juneau.rest.client with parameters of type SerializerModifier and TypeMethodDescription<T> TRestClient.getRemote(Class<T> interfaceClass, Object rootUrl, Serializer serializer, Parser parser) Same asRestClient.getRemote(Class, Object)but allows you to override the serializer and parser used.<T> TRestClient.getRrpcInterface(Class<T> interfaceClass, Object uri, Serializer serializer, Parser parser) Same asRestClient.getRrpcInterface(Class, Object)but allows you to override the serializer and parser used.RestClient.Builder.serializer(Serializer value) Serializer.RestRequest.serializer(Serializer serializer) Specifies the serializer to use on the request body.RestClient.Builder.serializers(Serializer... value) Serializers.Method parameters in org.apache.juneau.rest.client with type arguments of type SerializerModifier and TypeMethodDescriptionRestClient.Builder.serializer(Class<? extends Serializer> value) Serializer.RestRequest.serializer(Class<? extends Serializer> serializer) Specifies the serializer to use on the request body.
- 
Uses of Serializer in org.apache.juneau.rest.mockMethods in org.apache.juneau.rest.mock with parameters of type SerializerModifier and TypeMethodDescriptionMockRestClient.Builder.serializer(Serializer value) MockRestRequest.serializer(Serializer serializer) MockRestClient.Builder.serializers(Serializer... value) Method parameters in org.apache.juneau.rest.mock with type arguments of type SerializerModifier and TypeMethodDescriptionMockRestClient.Builder.serializer(Class<? extends Serializer> value) MockRestRequest.serializer(Class<? extends Serializer> serializer) 
- 
Uses of Serializer in org.apache.juneau.serializerSubclasses of Serializer in org.apache.juneau.serializerModifier and TypeClassDescriptionclassSubclass ofSerializerfor byte-based serializers.static classRepresents no Serializer.static classAn identifier that the previous entries in this group should be inherited.static classAn identifier that the previous entries in this group should not be inherited.classSubclass ofSerializerfor character-based serializers.Methods in org.apache.juneau.serializer that return SerializerModifier and TypeMethodDescriptionSerializer.Builder.build()final SerializerSerializer.forEachAcceptMediaType(Consumer<MediaType> action) Performs an action on the media types handled based on the value of theaccept parameter passed into the constructor.SerializerMatch.getSerializer()Returns the serializer that matched the HTTPAccept header value.SerializerSet.getSerializer(String acceptHeader) Same asSerializerSet.getSerializerMatch(String)but returns just the matched serializer.SerializerSet.getSerializer(MediaType mediaType) Same asSerializerSet.getSerializerMatch(MediaType)but returns just the matched serializer.Methods in org.apache.juneau.serializer that return types with arguments of type SerializerModifier and TypeMethodDescriptionSerializerSet.getSerializers()Returns a copy of the serializers in this group.Methods in org.apache.juneau.serializer with parameters of type SerializerModifier and TypeMethodDescriptionSerializerSet.Builder.add(Serializer... s) Registers the specified serializers with this group.static SerializerSession.BuilderSerializerSession.create(Serializer ctx) Creates a new builder for this object.Method parameters in org.apache.juneau.serializer with type arguments of type SerializerModifier and TypeMethodDescriptionstatic Serializer.BuilderSerializer.createSerializerBuilder(Class<? extends Serializer> c) Instantiates a builder of the specified serializer class.Constructors in org.apache.juneau.serializer with parameters of type SerializerModifierConstructorDescriptionprotectedBuilder(Serializer copyFrom) Copy constructor.protectedBuilder(Serializer ctx) ConstructorSerializerMatch(MediaType mediaType, Serializer serializer) Constructor.
- 
Uses of Serializer in org.apache.juneau.soapSubclasses of Serializer in org.apache.juneau.soapModifier and TypeClassDescriptionclassSerializes POJOs to HTTP responses as XML+SOAP.
- 
Uses of Serializer in org.apache.juneau.uonSubclasses of Serializer in org.apache.juneau.uonModifier and TypeClassDescriptionclassSerializes POJO models to UON (a notation for URL-encoded query parameter values).static classEquivalent toUonSerializer..create ().encoding().build();static classEquivalent toUonSerializer..create ().ws().build();
- 
Uses of Serializer in org.apache.juneau.urlencodingSubclasses of Serializer in org.apache.juneau.urlencodingModifier and TypeClassDescriptionclassSerializes POJO models to URL-encoded notation with UON-encoded values (a notation for URL-encoded query paramter values).static classEquivalent toUrlEncodingSerializer..create ().expandedParams().build();static classEquivalent toUrlEncodingSerializer..create ().plainTextParts().build();static classEquivalent toUrlEncodingSerializer..create ().useWhitespace().build();
- 
Uses of Serializer in org.apache.juneau.xmlSubclasses of Serializer in org.apache.juneau.xmlModifier and TypeClassDescriptionclassSerializes POJOs to HTTP responses as XML.static classDefault serializer without namespaces.classSerializes POJO models to XML.static classDefault serializer without namespaces.static classDefault serializer without namespaces, single quotes.static classDefault serializer without namespaces, single quotes, with whitespace.static classDefault serializer, single quotes.static classDefault serializer, single quotes, whitespace added.