diff --git a/android/guava/src/com/google/common/net/MediaType.java b/android/guava/src/com/google/common/net/MediaType.java index 9c5881cebdb7..211258a69e24 100644 --- a/android/guava/src/com/google/common/net/MediaType.java +++ b/android/guava/src/com/google/common/net/MediaType.java @@ -426,6 +426,14 @@ private static MediaType addKnownType(MediaType mediaType) { */ public static final MediaType APPLICATION_BINARY = createConstant(APPLICATION_TYPE, "binary"); + /** + * Media type for the GeoJSON Format, a + * geospatial data interchange format based on JSON. + * + * @since NEXT + */ + public static final MediaType GEO_JSON = createConstant(APPLICATION_TYPE, "geo+json"); + public static final MediaType GZIP = createConstant(APPLICATION_TYPE, "x-gzip"); /** diff --git a/guava/src/com/google/common/net/MediaType.java b/guava/src/com/google/common/net/MediaType.java index 9025980cd010..5636afa8dcef 100644 --- a/guava/src/com/google/common/net/MediaType.java +++ b/guava/src/com/google/common/net/MediaType.java @@ -426,6 +426,14 @@ private static MediaType addKnownType(MediaType mediaType) { */ public static final MediaType APPLICATION_BINARY = createConstant(APPLICATION_TYPE, "binary"); + /** + * Media type for the GeoJSON Format, a + * geospatial data interchange format based on JSON. + * + * @since NEXT + */ + public static final MediaType GEO_JSON = createConstant(APPLICATION_TYPE, "geo+json"); + public static final MediaType GZIP = createConstant(APPLICATION_TYPE, "x-gzip"); /**