Package io.dropwizard.jersey.jsr310
Class OffsetDateTimeParam
- java.lang.Object
-
- io.dropwizard.jersey.params.AbstractParam<OffsetDateTime>
-
- io.dropwizard.jersey.jsr310.OffsetDateTimeParam
-
public class OffsetDateTimeParam extends AbstractParam<OffsetDateTime>
A parameter encapsulating date/time values containing an offset from UTC. All non-parsable values will return a400 Bad Requestresponse.- See Also:
OffsetDateTime
-
-
Constructor Summary
Constructors Constructor Description OffsetDateTimeParam(@Nullable String input)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected OffsetDateTimeparse(@Nullable String input)Given a string representation, parse it and return an instance of the parameter type.-
Methods inherited from class io.dropwizard.jersey.params.AbstractParam
equals, error, errorMessage, generateErrorMessage, get, getErrorStatus, hashCode, mediaType, toString
-
-
-
-
Constructor Detail
-
OffsetDateTimeParam
public OffsetDateTimeParam(@Nullable String input)
-
-
Method Detail
-
parse
protected OffsetDateTime parse(@Nullable String input) throws Exception
Description copied from class:AbstractParamGiven a string representation, parse it and return an instance of the parameter type.- Specified by:
parsein classAbstractParam<OffsetDateTime>- Parameters:
input- the raw input- Returns:
input, parsed as an instance ofT- Throws:
Exception- if there is an error parsing the input
-
-