@@ -40,7 +40,7 @@ public class ExtendedScalars {
4040 * @see java.time.OffsetDateTime
4141 * @see java.time.ZonedDateTime
4242 */
43- public static GraphQLScalarType DateTime = DateTimeScalar .INSTANCE ;
43+ public static final GraphQLScalarType DateTime = DateTimeScalar .INSTANCE ;
4444
4545 /**
4646 * An RFC-3339 compliant date scalar that accepts string values like `1996-12-19` and produces
@@ -53,7 +53,7 @@ public class ExtendedScalars {
5353 *
5454 * @see java.time.LocalDate
5555 */
56- public static GraphQLScalarType Date = DateScalar .INSTANCE ;
56+ public static final GraphQLScalarType Date = DateScalar .INSTANCE ;
5757 /**
5858 * An RFC-3339 compliant time scalar that accepts string values like `6:39:57-08:00` and produces
5959 * `java.time.OffsetTime` objects at runtime.
@@ -65,7 +65,7 @@ public class ExtendedScalars {
6565 *
6666 * @see java.time.OffsetTime
6767 */
68- public static GraphQLScalarType Time = TimeScalar .INSTANCE ;
68+ public static final GraphQLScalarType Time = TimeScalar .INSTANCE ;
6969
7070 /**
7171 * A 24-hour local time scalar that accepts strings like `hh:mm:ss` and `hh:mm:ss.sss` and produces
@@ -76,7 +76,7 @@ public class ExtendedScalars {
7676 *
7777 * @see java.time.LocalTime
7878 */
79- public static GraphQLScalarType LocalTime = GraphQLScalarType .newScalar ()
79+ public static final GraphQLScalarType LocalTime = GraphQLScalarType .newScalar ()
8080 .name ("LocalTime" )
8181 .description ("24-hour clock time value string in the format `hh:mm:ss` or `hh:mm:ss.sss`." )
8282 .coercing (new LocalTimeCoercing ())
@@ -105,7 +105,7 @@ public class ExtendedScalars {
105105 *
106106 * @see #Json
107107 */
108- public static GraphQLScalarType Object = ObjectScalar .INSTANCE ;
108+ public static final GraphQLScalarType Object = ObjectScalar .INSTANCE ;
109109
110110 /**
111111 * A synonym class for the {@link #Object} scalar, since some people prefer their SDL to look like the following :
@@ -122,68 +122,68 @@ public class ExtendedScalars {
122122 *
123123 * @see graphql.scalars.ExtendedScalars#Object
124124 */
125- public static GraphQLScalarType Json = JsonScalar .INSTANCE ;
125+ public static final GraphQLScalarType Json = JsonScalar .INSTANCE ;
126126
127127 /**
128128 * A URL scalar that accepts URL strings and produces {@link java.net.URL} objects at runtime
129129 */
130- public static GraphQLScalarType Url = UrlScalar .INSTANCE ;
130+ public static final GraphQLScalarType Url = UrlScalar .INSTANCE ;
131131
132132 /**
133133 * A Locale scalar that accepts a IETF BCP 47 language tag string and produces {@link
134134 * java.util.Locale} objects at runtime.
135135 */
136- public static GraphQLScalarType Locale = LocaleScalar .INSTANCE ;
136+ public static final GraphQLScalarType Locale = LocaleScalar .INSTANCE ;
137137
138138 /**
139139 * An `Int` scalar that MUST be greater than zero
140140 *
141141 * @see graphql.Scalars#GraphQLInt
142142 */
143- public static GraphQLScalarType PositiveInt = PositiveIntScalar .INSTANCE ;
143+ public static final GraphQLScalarType PositiveInt = PositiveIntScalar .INSTANCE ;
144144 /**
145145 * An `Int` scalar that MUST be less than zero
146146 *
147147 * @see graphql.Scalars#GraphQLInt
148148 */
149- public static GraphQLScalarType NegativeInt = NegativeIntScalar .INSTANCE ;
149+ public static final GraphQLScalarType NegativeInt = NegativeIntScalar .INSTANCE ;
150150 /**
151151 * An `Int` scalar that MUST be less than or equal to zero
152152 *
153153 * @see graphql.Scalars#GraphQLInt
154154 */
155- public static GraphQLScalarType NonPositiveInt = NonPositiveIntScalar .INSTANCE ;
155+ public static final GraphQLScalarType NonPositiveInt = NonPositiveIntScalar .INSTANCE ;
156156 /**
157157 * An `Int` scalar that MUST be greater than or equal to zero
158158 *
159159 * @see graphql.Scalars#GraphQLInt
160160 */
161- public static GraphQLScalarType NonNegativeInt = NonNegativeIntScalar .INSTANCE ;
161+ public static final GraphQLScalarType NonNegativeInt = NonNegativeIntScalar .INSTANCE ;
162162
163163 /**
164164 * An `Float` scalar that MUST be greater than zero
165165 *
166166 * @see graphql.Scalars#GraphQLFloat
167167 */
168- public static GraphQLScalarType PositiveFloat = PositiveFloatScalar .INSTANCE ;
168+ public static final GraphQLScalarType PositiveFloat = PositiveFloatScalar .INSTANCE ;
169169 /**
170170 * An `Float` scalar that MUST be less than zero
171171 *
172172 * @see graphql.Scalars#GraphQLFloat
173173 */
174- public static GraphQLScalarType NegativeFloat = NegativeFloatScalar .INSTANCE ;
174+ public static final GraphQLScalarType NegativeFloat = NegativeFloatScalar .INSTANCE ;
175175 /**
176176 * An `Float` scalar that MUST be less than or equal to zero
177177 *
178178 * @see graphql.Scalars#GraphQLFloat
179179 */
180- public static GraphQLScalarType NonPositiveFloat = NonPositiveFloatScalar .INSTANCE ;
180+ public static final GraphQLScalarType NonPositiveFloat = NonPositiveFloatScalar .INSTANCE ;
181181 /**
182182 * An `Float` scalar that MUST be greater than or equal to zero
183183 *
184184 * @see graphql.Scalars#GraphQLFloat
185185 */
186- public static GraphQLScalarType NonNegativeFloat = NonNegativeFloatScalar .INSTANCE ;
186+ public static final GraphQLScalarType NonNegativeFloat = NonNegativeFloatScalar .INSTANCE ;
187187
188188
189189 /**
0 commit comments