Skip navigation links

com.diffplug.durian:durian-parse:1.2.0 by DiffPlug

A B C D E F G H I J K L M N O P Q R S T U V W X Z 

A

ACCEPT - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Accept header field name.
ACCEPT_CHARSET - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Accept-Charset header field name.
ACCEPT_ENCODING - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Accept-Encoding header field name.
ACCEPT_LANGUAGE - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Accept-Language header field name.
ACCEPT_RANGES - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Accept-Ranges header field name.
ACCESS_CONTROL_ALLOW_CREDENTIALS - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Access-Control-Allow-Credentials header field name.
ACCESS_CONTROL_ALLOW_HEADERS - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Access-Control-Allow-Headers header field name.
ACCESS_CONTROL_ALLOW_METHODS - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Access-Control-Allow-Methods header field name.
ACCESS_CONTROL_ALLOW_ORIGIN - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Access-Control-Allow-Origin header field name.
ACCESS_CONTROL_EXPOSE_HEADERS - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Access-Control-Expose-Headers header field name.
ACCESS_CONTROL_MAX_AGE - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Access-Control-Max-Age header field name.
ACCESS_CONTROL_REQUEST_HEADERS - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Access-Control-Request-Headers header field name.
ACCESS_CONTROL_REQUEST_METHOD - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Access-Control-Request-Method header field name.
addEscape(char, String) - Method in class com.diffplug.common.escape.CharEscaperBuilder
Add a new mapping from an index to an object to the escaping.
addEscape(char, String) - Method in class com.diffplug.common.escape.Escapers.Builder
Adds a replacement string for the given input character.
addEscapes(char[], String) - Method in class com.diffplug.common.escape.CharEscaperBuilder
Add multiple mappings at once for a particular index.
AGE - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Age header field name.
ALLOW - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Allow header field name.
ANY_APPLICATION_TYPE - Static variable in class com.diffplug.common.net.MediaType
 
ANY_AUDIO_TYPE - Static variable in class com.diffplug.common.net.MediaType
 
ANY_IMAGE_TYPE - Static variable in class com.diffplug.common.net.MediaType
 
ANY_TEXT_TYPE - Static variable in class com.diffplug.common.net.MediaType
 
ANY_TYPE - Static variable in class com.diffplug.common.net.MediaType
 
ANY_VIDEO_TYPE - Static variable in class com.diffplug.common.net.MediaType
 
APPLE_MOBILE_CONFIG - Static variable in class com.diffplug.common.net.MediaType
APPLE_PASSBOOK - Static variable in class com.diffplug.common.net.MediaType
Media type for Apple Passbook.
APPLICATION_BINARY - Static variable in class com.diffplug.common.net.MediaType
This is a non-standard media type, but is commonly used in serving hosted binary files as it is known not to trigger content sniffing in current browsers.
APPLICATION_XML_UTF_8 - Static variable in class com.diffplug.common.net.MediaType
As described in RFC 3023, this constant (application/xml) is used for XML documents that are “unreadable by casual users.” MediaType.XML_UTF_8 is provided for documents that may be read by users.
ArrayBasedCharEscaper - Class in com.diffplug.common.escape
A CharEscaper that uses an array to quickly look up replacement characters for a given char value.
ArrayBasedCharEscaper(Map<Character, String>, char, char) - Constructor for class com.diffplug.common.escape.ArrayBasedCharEscaper
Creates a new ArrayBasedCharEscaper instance with the given replacement map and specified safe range.
ArrayBasedCharEscaper(ArrayBasedEscaperMap, char, char) - Constructor for class com.diffplug.common.escape.ArrayBasedCharEscaper
Creates a new ArrayBasedCharEscaper instance with the given replacement map and specified safe range.
ArrayBasedEscaperMap - Class in com.diffplug.common.escape
An implementation-specific parameter class suitable for initializing ArrayBasedCharEscaper or ArrayBasedUnicodeEscaper instances.
ArrayBasedUnicodeEscaper - Class in com.diffplug.common.escape
A UnicodeEscaper that uses an array to quickly look up replacement characters for a given code point.
ArrayBasedUnicodeEscaper(Map<Character, String>, int, int, String) - Constructor for class com.diffplug.common.escape.ArrayBasedUnicodeEscaper
Creates a new ArrayBasedUnicodeEscaper instance with the given replacement map and specified safe range.
ArrayBasedUnicodeEscaper(ArrayBasedEscaperMap, int, int, String) - Constructor for class com.diffplug.common.escape.ArrayBasedUnicodeEscaper
Creates a new ArrayBasedUnicodeEscaper instance with the given replacement map and specified safe range.
asFunction() - Method in class com.diffplug.common.escape.Escaper
Returns a Function that invokes Escaper.escape(String) on this escaper.
ATOM_UTF_8 - Static variable in class com.diffplug.common.net.MediaType
 
AUTHORIZATION - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Authorization header field name.

B

BMP - Static variable in class com.diffplug.common.net.MediaType
 
build() - Method in class com.diffplug.common.escape.Escapers.Builder
Returns a new escaper based on the current state of the builder.
builder() - Static method in class com.diffplug.common.escape.Escapers
Returns a builder for creating simple, fast escapers.
BZIP2 - Static variable in class com.diffplug.common.net.MediaType
 

C

CACHE_CONTROL - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Cache-Control header field name.
CACHE_MANIFEST_UTF_8 - Static variable in class com.diffplug.common.net.MediaType
 
CharEscaper - Class in com.diffplug.common.escape
An object that converts literal text into a format safe for inclusion in a particular context (such as an XML document).
CharEscaper() - Constructor for class com.diffplug.common.escape.CharEscaper
Constructor for use by subclasses.
CharEscaperBuilder - Class in com.diffplug.common.escape
Simple helper class to build a “sparse” array of objects based on the indexes that were added to it.
CharEscaperBuilder() - Constructor for class com.diffplug.common.escape.CharEscaperBuilder
Construct a new sparse array builder.
charset() - Method in class com.diffplug.common.net.MediaType
Returns an optional charset for the value of the charset parameter if it is specified.
child(String) - Method in class com.diffplug.common.net.InternetDomainName
Creates and returns a new InternetDomainName by prepending the argument and a dot to the current name.
codePointAt(CharSequence, int, int) - Static method in class com.diffplug.common.escape.UnicodeEscaper
Returns the Unicode code point of the character at the given index.
coerceToInteger(InetAddress) - Static method in class com.diffplug.common.net.InetAddresses
Returns an integer representing an IPv4 address regardless of whether the supplied argument is an IPv4 address or not.
com.diffplug.common.escape - package com.diffplug.common.escape
Interfaces, utilities, and simple implementations of escapers and encoders.
com.diffplug.common.html - package com.diffplug.common.html
Escapers for HTML.
com.diffplug.common.net - package com.diffplug.common.net
This package contains utility methods and classes for working with net addresses (numeric IP and domain names).
com.diffplug.common.xml - package com.diffplug.common.xml
Escapers for XML.
computeReplacement(CharEscaper, char) - Static method in class com.diffplug.common.escape.Escapers
Returns a string that would replace the given character in the specified escaper, or null if no replacement should be made.
computeReplacement(UnicodeEscaper, int) - Static method in class com.diffplug.common.escape.Escapers
Returns a string that would replace the given character in the specified escaper, or null if no replacement should be made.
CONNECTION - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Connection header field name.
CONTENT_DISPOSITION - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Content-Disposition header field name.
CONTENT_ENCODING - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Content-Encoding header field name.
CONTENT_LANGUAGE - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Content-Language header field name.
CONTENT_LENGTH - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Content-Length header field name.
CONTENT_LOCATION - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Content-Location header field name.
CONTENT_MD5 - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Content-MD5 header field name.
CONTENT_RANGE - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Content-Range header field name.
CONTENT_SECURITY_POLICY - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Content-Security-Policy header field name.
CONTENT_SECURITY_POLICY_REPORT_ONLY - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Content-Security-Policy-Report-Only header field name.
CONTENT_TYPE - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Content-Type header field name.
COOKIE - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Cookie header field name.
create(Map<Character, String>) - Static method in class com.diffplug.common.escape.ArrayBasedEscaperMap
Returns a new ArrayBasedEscaperMap for creating ArrayBasedCharEscaper or ArrayBasedUnicodeEscaper instances.
create(String, String) - Static method in class com.diffplug.common.net.MediaType
Creates a new media type with the given type and subtype.
CRW - Static variable in class com.diffplug.common.net.MediaType
The media type for the Canon Image File Format (crw files), a widely-used “raw image” format for cameras.
CSS_UTF_8 - Static variable in class com.diffplug.common.net.MediaType
 
CSV_UTF_8 - Static variable in class com.diffplug.common.net.MediaType
 

D

DART_UTF_8 - Static variable in class com.diffplug.common.net.MediaType
Media type for dart files.
DATE - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Date header field name.
decrement(InetAddress) - Static method in class com.diffplug.common.net.InetAddresses
Returns a new InetAddress that is one less than the passed in address.
DNT - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP DNT header field name.

E

EOT - Static variable in class com.diffplug.common.net.MediaType
Media type for Embedded OpenType fonts.
EPUB - Static variable in class com.diffplug.common.net.MediaType
As described in the International Digital Publishing Forum EPUB is the distribution and interchange format standard for digital publications and documents.
equals(Object) - Method in class com.diffplug.common.net.HostAndPort
 
equals(Object) - Method in class com.diffplug.common.net.HostSpecifier
 
equals(Object) - Method in class com.diffplug.common.net.InternetDomainName
Equality testing is based on the text supplied by the caller, after normalization as described in the class documentation.
equals(Object) - Method in class com.diffplug.common.net.MediaType
 
escape(String) - Method in class com.diffplug.common.escape.ArrayBasedCharEscaper
 
escape(char) - Method in class com.diffplug.common.escape.ArrayBasedCharEscaper
Escapes a single character using the replacement array and safe range values.
escape(String) - Method in class com.diffplug.common.escape.ArrayBasedUnicodeEscaper
 
escape(int) - Method in class com.diffplug.common.escape.ArrayBasedUnicodeEscaper
Escapes a single Unicode code point using the replacement array and safe range values.
escape(String) - Method in class com.diffplug.common.escape.CharEscaper
Returns the escaped form of a given literal string.
escape(char) - Method in class com.diffplug.common.escape.CharEscaper
Returns the escaped form of the given character, or null if this character does not need to be escaped.
escape(String) - Method in class com.diffplug.common.escape.Escaper
Returns the escaped form of a given literal string.
escape(int) - Method in class com.diffplug.common.escape.UnicodeEscaper
Returns the escaped form of the given Unicode code point, or null if this code point does not need to be escaped.
escape(String) - Method in class com.diffplug.common.escape.UnicodeEscaper
Returns the escaped form of a given literal string.
escape(String) - Method in class com.diffplug.common.net.PercentEscaper
 
escape(int) - Method in class com.diffplug.common.net.PercentEscaper
Escapes the given Unicode code point in UTF-8.
Escaper - Class in com.diffplug.common.escape
An object that converts literal text into a format safe for inclusion in a particular context (such as an XML document).
Escaper() - Constructor for class com.diffplug.common.escape.Escaper
Constructor for use by subclasses.
Escapers - Class in com.diffplug.common.escape
Static utility methods pertaining to Escaper instances.
Escapers.Builder - Class in com.diffplug.common.escape
A builder for simple, fast escapers.
escapeSlow(String, int) - Method in class com.diffplug.common.escape.CharEscaper
Returns the escaped form of a given literal string, starting at the given index.
escapeSlow(String, int) - Method in class com.diffplug.common.escape.UnicodeEscaper
Returns the escaped form of a given literal string, starting at the given index.
escapeUnsafe(char) - Method in class com.diffplug.common.escape.ArrayBasedCharEscaper
Escapes a char value that has no direct explicit value in the replacement array and lies outside the stated safe range.
escapeUnsafe(int) - Method in class com.diffplug.common.escape.ArrayBasedUnicodeEscaper
Escapes a code point that has no direct explicit value in the replacement array and lies outside the stated safe range.
ETAG - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP ETag header field name.
EXPECT - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Expect header field name.
EXPIRES - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Expires header field name.

F

FOLLOW_ONLY_WHEN_PRERENDER_SHOWN - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Follow-Only-When-Prerender-Shown header field name.
FORM_DATA - Static variable in class com.diffplug.common.net.MediaType
 
forString(String) - Static method in class com.diffplug.common.net.InetAddresses
Returns the InetAddress having the given string representation.
forUriString(String) - Static method in class com.diffplug.common.net.InetAddresses
Returns an InetAddress representing the literal IPv4 or IPv6 host portion of a URL, encoded in the format specified by RFC 3986 section 3.2.2.
from(String) - Static method in class com.diffplug.common.net.HostSpecifier
Attempts to return a HostSpecifier for the given string, throwing an exception if parsing fails.
FROM - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP From header field name.
from(String) - Static method in class com.diffplug.common.net.InternetDomainName
Returns an instance of InternetDomainName after lenient validation.
fromHost(String) - Static method in class com.diffplug.common.net.HostAndPort
Build a HostAndPort instance from a host only.
fromInteger(int) - Static method in class com.diffplug.common.net.InetAddresses
Returns an Inet4Address having the integer value specified by the argument.
fromLittleEndianByteArray(byte[]) - Static method in class com.diffplug.common.net.InetAddresses
Returns an address from a little-endian ordered byte array (the opposite of what InetAddress.getByAddress(java.lang.String, byte[]) expects).
fromParts(String, int) - Static method in class com.diffplug.common.net.HostAndPort
Build a HostAndPort instance from separate host and port values.
fromString(String) - Static method in class com.diffplug.common.net.HostAndPort
Split a freeform string into a host and port, without strict validation.
fromValid(String) - Static method in class com.diffplug.common.net.HostSpecifier
Returns a HostSpecifier built from the provided specifier, which is already known to be valid.

G

get6to4IPv4Address(Inet6Address) - Static method in class com.diffplug.common.net.InetAddresses
Returns the IPv4 address embedded in a 6to4 address.
getClient() - Method in class com.diffplug.common.net.InetAddresses.TeredoInfo
 
getCoercedIPv4Address(InetAddress) - Static method in class com.diffplug.common.net.InetAddresses
Coerces an IPv6 address into an IPv4 address.
getCompatIPv4Address(Inet6Address) - Static method in class com.diffplug.common.net.InetAddresses
Returns the IPv4 address embedded in an IPv4 compatible address.
getEmbeddedIPv4ClientAddress(Inet6Address) - Static method in class com.diffplug.common.net.InetAddresses
Examines the Inet6Address to extract the embedded IPv4 client address if the InetAddress is an IPv6 address of one of the specified address types that contain an embedded IPv4 address.
getFlags() - Method in class com.diffplug.common.net.InetAddresses.TeredoInfo
 
getHostText() - Method in class com.diffplug.common.net.HostAndPort
Returns the portion of this HostAndPort instance that should represent the hostname or IPv4/IPv6 literal.
getIsatapIPv4Address(Inet6Address) - Static method in class com.diffplug.common.net.InetAddresses
Returns the IPv4 address embedded in an ISATAP address.
getPort() - Method in class com.diffplug.common.net.HostAndPort
Get the current port number, failing if no port is defined.
getPort() - Method in class com.diffplug.common.net.InetAddresses.TeredoInfo
 
getPortOrDefault(int) - Method in class com.diffplug.common.net.HostAndPort
Returns the current port number, with a default if no port is defined.
getServer() - Method in class com.diffplug.common.net.InetAddresses.TeredoInfo
 
getTeredoInfo(Inet6Address) - Static method in class com.diffplug.common.net.InetAddresses
Returns the Teredo information embedded in a Teredo address.
GIF - Static variable in class com.diffplug.common.net.MediaType
 
GZIP - Static variable in class com.diffplug.common.net.MediaType
 

H

hasEmbeddedIPv4ClientAddress(Inet6Address) - Static method in class com.diffplug.common.net.InetAddresses
Examines the Inet6Address to determine if it is an IPv6 address of one of the specified address types that contain an embedded IPv4 address.
hashCode() - Method in class com.diffplug.common.net.HostAndPort
 
hashCode() - Method in class com.diffplug.common.net.HostSpecifier
 
hashCode() - Method in class com.diffplug.common.net.InternetDomainName
 
hashCode() - Method in class com.diffplug.common.net.MediaType
 
hasParent() - Method in class com.diffplug.common.net.InternetDomainName
Indicates whether this domain is composed of two or more parts.
hasPort() - Method in class com.diffplug.common.net.HostAndPort
Return true if this instance has a defined port.
hasPublicSuffix() - Method in class com.diffplug.common.net.InternetDomainName
Indicates whether this domain name ends in a public suffix, including if it is a public suffix itself.
hasWildcard() - Method in class com.diffplug.common.net.MediaType
Returns true if either the type or subtype is the wildcard.
HOST - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Host header field name.
HostAndPort - Class in com.diffplug.common.net
An immutable representation of a host and port.
HostSpecifier - Class in com.diffplug.common.net
A syntactically valid host specifier, suitable for use in a URI.
HTML_UTF_8 - Static variable in class com.diffplug.common.net.MediaType
 
htmlEscaper() - Static method in class com.diffplug.common.html.HtmlEscapers
Returns an Escaper instance that escapes HTML metacharacters as specified by HTML 4.01.
HtmlEscapers - Class in com.diffplug.common.html
Escaper instances suitable for strings to be included in HTML attribute values and most elements’ text contents.
HttpHeaders - Class in com.diffplug.common.net
Contains constant definitions for the HTTP header field names.

I

I_CALENDAR_UTF_8 - Static variable in class com.diffplug.common.net.MediaType
 
ICO - Static variable in class com.diffplug.common.net.MediaType
 
IF_MATCH - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP If-Match header field name.
IF_MODIFIED_SINCE - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP If-Modified-Since header field name.
IF_NONE_MATCH - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP If-None-Match header field name.
IF_RANGE - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP If-Range header field name.
IF_UNMODIFIED_SINCE - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP If-Unmodified-Since header field name.
increment(InetAddress) - Static method in class com.diffplug.common.net.InetAddresses
Returns a new InetAddress that is one more than the passed in address.
InetAddresses - Class in com.diffplug.common.net
Static utility methods pertaining to InetAddress instances.
InetAddresses.TeredoInfo - Class in com.diffplug.common.net
A simple immutable data class to encapsulate the information to be found in a Teredo address.
InternetDomainName - Class in com.diffplug.common.net
An immutable well-formed internet domain name, such as com or foo.co.uk.
is(MediaType) - Method in class com.diffplug.common.net.MediaType
Returns true if this instance falls within the range (as defined by the HTTP Accept header) given by the argument according to three criteria:
is6to4Address(Inet6Address) - Static method in class com.diffplug.common.net.InetAddresses
Evaluates whether the argument is a 6to4 address.
isCompatIPv4Address(Inet6Address) - Static method in class com.diffplug.common.net.InetAddresses
Evaluates whether the argument is an IPv6 “compat” address.
isInetAddress(String) - Static method in class com.diffplug.common.net.InetAddresses
Returns true if the supplied string is a valid IP string literal, false otherwise.
isIsatapAddress(Inet6Address) - Static method in class com.diffplug.common.net.InetAddresses
Evaluates whether the argument is an ISATAP address.
isMappedIPv4Address(String) - Static method in class com.diffplug.common.net.InetAddresses
Evaluates whether the argument is an “IPv4 mapped” IPv6 address.
isMaximum(InetAddress) - Static method in class com.diffplug.common.net.InetAddresses
Returns true if the InetAddress is either 255.255.255.255 for IPv4 or ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff for IPv6.
isPublicSuffix() - Method in class com.diffplug.common.net.InternetDomainName
Indicates whether this domain name represents a public suffix, as defined by the Mozilla Foundation’s Public Suffix List (PSL).
isTeredoAddress(Inet6Address) - Static method in class com.diffplug.common.net.InetAddresses
Evaluates whether the argument is a Teredo address.
isTopPrivateDomain() - Method in class com.diffplug.common.net.InternetDomainName
Indicates whether this domain name is composed of exactly one subdomain component followed by a public suffix.
isUnderPublicSuffix() - Method in class com.diffplug.common.net.InternetDomainName
Indicates whether this domain name ends in a public suffix, while not being a public suffix itself.
isUriInetAddress(String) - Static method in class com.diffplug.common.net.InetAddresses
Returns true if the supplied string is a valid URI IP string literal, false otherwise.
isValid(String) - Static method in class com.diffplug.common.net.HostSpecifier
Determines whether specifier represents a valid HostSpecifier as described in the documentation for HostSpecifier.fromValid(String).
isValid(String) - Static method in class com.diffplug.common.net.InternetDomainName
Indicates whether the argument is a syntactically valid domain name using lenient validation.

J

JAVASCRIPT_UTF_8 - Static variable in class com.diffplug.common.net.MediaType
RFC 4329 declares this to be the correct media type for JavaScript, but text/javascript may be necessary in certain situations for compatibility.
JPEG - Static variable in class com.diffplug.common.net.MediaType
 
JSON_UTF_8 - Static variable in class com.diffplug.common.net.MediaType
 

K

KEY_ARCHIVE - Static variable in class com.diffplug.common.net.MediaType
As described in PKCS #12: Personal Information Exchange Syntax Standard, PKCS #12 defines an archive file format for storing many cryptography objects as a single file.
KML - Static variable in class com.diffplug.common.net.MediaType
 
KMZ - Static variable in class com.diffplug.common.net.MediaType
 

L

LAST_EVENT_ID - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Last-Event-ID header field name.
LAST_MODIFIED - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Last-Modified header field name.
LINK - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Link header field name.
LOCATION - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Location header field name.

M

MANIFEST_JSON_UTF_8 - Static variable in class com.diffplug.common.net.MediaType
Media type for the Manifest for a web application.
MAX_FORWARDS - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Max-Forwards header field name.
MBOX - Static variable in class com.diffplug.common.net.MediaType
 
MediaType - Class in com.diffplug.common.net
Represents an Internet Media Type (also known as a MIME Type or Content Type).
MICROSOFT_EXCEL - Static variable in class com.diffplug.common.net.MediaType
 
MICROSOFT_POWERPOINT - Static variable in class com.diffplug.common.net.MediaType
 
MICROSOFT_WORD - Static variable in class com.diffplug.common.net.MediaType
 
MP4_AUDIO - Static variable in class com.diffplug.common.net.MediaType
 
MP4_VIDEO - Static variable in class com.diffplug.common.net.MediaType
 
MPEG_AUDIO - Static variable in class com.diffplug.common.net.MediaType
 
MPEG_VIDEO - Static variable in class com.diffplug.common.net.MediaType
 

N

nextEscapeIndex(CharSequence, int, int) - Method in class com.diffplug.common.escape.ArrayBasedUnicodeEscaper
 
nextEscapeIndex(CharSequence, int, int) - Method in class com.diffplug.common.escape.UnicodeEscaper
Scans a sub-sequence of characters from a given CharSequence, returning the index of the next character that requires escaping.
nextEscapeIndex(CharSequence, int, int) - Method in class com.diffplug.common.net.PercentEscaper
 
nullEscaper() - Static method in class com.diffplug.common.escape.Escapers
Returns an Escaper that does no escaping, passing all character data through unchanged.

O

OCTET_STREAM - Static variable in class com.diffplug.common.net.MediaType
 
OGG_AUDIO - Static variable in class com.diffplug.common.net.MediaType
 
OGG_CONTAINER - Static variable in class com.diffplug.common.net.MediaType
 
OGG_VIDEO - Static variable in class com.diffplug.common.net.MediaType
 
OOXML_DOCUMENT - Static variable in class com.diffplug.common.net.MediaType
 
OOXML_PRESENTATION - Static variable in class com.diffplug.common.net.MediaType
 
OOXML_SHEET - Static variable in class com.diffplug.common.net.MediaType
 
OPENDOCUMENT_GRAPHICS - Static variable in class com.diffplug.common.net.MediaType
 
OPENDOCUMENT_PRESENTATION - Static variable in class com.diffplug.common.net.MediaType
 
OPENDOCUMENT_SPREADSHEET - Static variable in class com.diffplug.common.net.MediaType
 
OPENDOCUMENT_TEXT - Static variable in class com.diffplug.common.net.MediaType
 
ORIGIN - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Origin header field name.

P

P3P - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP P3P header field name.
parameters() - Method in class com.diffplug.common.net.MediaType
Returns a multimap containing the parameters of this media type.
parent() - Method in class com.diffplug.common.net.InternetDomainName
Returns an InternetDomainName that is the immediate ancestor of this one; that is, the current domain with the leftmost part removed.
parse(String) - Static method in class com.diffplug.common.net.MediaType
Parses a media type from its string representation.
parts() - Method in class com.diffplug.common.net.InternetDomainName
Returns the individual components of this domain name, normalized to all lower case.
PDF - Static variable in class com.diffplug.common.net.MediaType
 
PercentEscaper - Class in com.diffplug.common.net
A UnicodeEscaper that escapes some set of Java characters using a UTF-8 based percent encoding scheme.
PercentEscaper(String, boolean) - Constructor for class com.diffplug.common.net.PercentEscaper
Constructs a percent escaper with the specified safe characters and optional handling of the space character.
PING_FROM - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Ping-From header field name.
PING_TO - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Ping-To header field name.
PLAIN_TEXT_UTF_8 - Static variable in class com.diffplug.common.net.MediaType
 
PNG - Static variable in class com.diffplug.common.net.MediaType
 
POSTSCRIPT - Static variable in class com.diffplug.common.net.MediaType
 
PRAGMA - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Pragma header field name.
PROTOBUF - Static variable in class com.diffplug.common.net.MediaType
PROXY_AUTHENTICATE - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Proxy-Authenticate header field name.
PROXY_AUTHORIZATION - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Proxy-Authorization header field name.
PSD - Static variable in class com.diffplug.common.net.MediaType
The media type for the Photoshop File Format (psd files) as defined by IANA, and found in /etc/mime.types, e.g.
PUBLIC_KEY_PINS - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Public-Key-Pins header field name.
PUBLIC_KEY_PINS_REPORT_ONLY - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Public-Key-Pins-Report-Only header field name.
publicSuffix() - Method in class com.diffplug.common.net.InternetDomainName
Returns the public suffix portion of the domain name, or null if no public suffix is present.

Q

QUICKTIME - Static variable in class com.diffplug.common.net.MediaType
 

R

RANGE - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Range header field name.
RDF_XML_UTF_8 - Static variable in class com.diffplug.common.net.MediaType
 
REFERER - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Referer header field name.
REFRESH - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Refresh header field name.
requireBracketsForIPv6() - Method in class com.diffplug.common.net.HostAndPort
Generate an error if the host might be a non-bracketed IPv6 literal.
RETRY_AFTER - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Retry-After header field name.
RTF_UTF_8 - Static variable in class com.diffplug.common.net.MediaType
 

S

SERVER - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Server header field name.
SET_COOKIE - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Set-Cookie header field name.
SET_COOKIE2 - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Set-Cookie2 header field name.
setSafeRange(char, char) - Method in class com.diffplug.common.escape.Escapers.Builder
Sets the safe range of characters for the escaper.
setUnsafeReplacement(String) - Method in class com.diffplug.common.escape.Escapers.Builder
Sets the replacement string for any characters outside the ‘safe’ range that have no explicit replacement.
SFNT - Static variable in class com.diffplug.common.net.MediaType
Media type for SFNT fonts (which includes TrueType and OpenType fonts).
SHOCKWAVE_FLASH - Static variable in class com.diffplug.common.net.MediaType
 
SKETCHUP - Static variable in class com.diffplug.common.net.MediaType
 
STRICT_TRANSPORT_SECURITY - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Strict-Transport-Security header field name.
subtype() - Method in class com.diffplug.common.net.MediaType
Returns the media subtype.
SVG_UTF_8 - Static variable in class com.diffplug.common.net.MediaType
 

T

TAR - Static variable in class com.diffplug.common.net.MediaType
 
TE - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP TE header field name.
TeredoInfo(Inet4Address, Inet4Address, int, int) - Constructor for class com.diffplug.common.net.InetAddresses.TeredoInfo
Constructs a TeredoInfo instance.
TEXT_JAVASCRIPT_UTF_8 - Static variable in class com.diffplug.common.net.MediaType
RFC 4329 declares application/javascript to be the correct media type for JavaScript, but this may be necessary in certain situations for compatibility.
TIFF - Static variable in class com.diffplug.common.net.MediaType
 
TIMING_ALLOW_ORIGIN - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Timing-Allow-Origin header field name.
toAddrString(InetAddress) - Static method in class com.diffplug.common.net.InetAddresses
Returns the string representation of an InetAddress.
toArray() - Method in class com.diffplug.common.escape.CharEscaperBuilder
Convert this builder into an array of char[]s where the maximum index is the value of the highest character that has been seen.
toEscaper() - Method in class com.diffplug.common.escape.CharEscaperBuilder
Convert this builder into a char escaper which is just a decorator around the underlying array of replacement char[]s.
topPrivateDomain() - Method in class com.diffplug.common.net.InternetDomainName
Returns the portion of this domain name that is one level beneath the public suffix.
toString() - Method in class com.diffplug.common.net.HostAndPort
Rebuild the host:port string, including brackets if necessary.
toString() - Method in class com.diffplug.common.net.HostSpecifier
Returns a string representation of the host specifier suitable for inclusion in a URI.
toString() - Method in class com.diffplug.common.net.InternetDomainName
Returns the domain name, normalized to all lower case.
toString() - Method in class com.diffplug.common.net.MediaType
Returns the string representation of this media type in the format described in RFC 2045.
toUriString(InetAddress) - Static method in class com.diffplug.common.net.InetAddresses
Returns the string representation of an InetAddress suitable for inclusion in a URI.
TRAILER - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Trailer header field name.
TRANSFER_ENCODING - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Transfer-Encoding header field name.
TSV_UTF_8 - Static variable in class com.diffplug.common.net.MediaType
type() - Method in class com.diffplug.common.net.MediaType
Returns the top-level media type.

U

UnicodeEscaper - Class in com.diffplug.common.escape
An Escaper that converts literal text into a format safe for inclusion in a particular context (such as an XML document).
UnicodeEscaper() - Constructor for class com.diffplug.common.escape.UnicodeEscaper
Constructor for use by subclasses.
UPGRADE - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Upgrade header field name.
UrlEscapers - Class in com.diffplug.common.net
Escaper instances suitable for strings to be included in particular sections of URLs.
urlFormParameterEscaper() - Static method in class com.diffplug.common.net.UrlEscapers
Returns an Escaper instance that escapes strings so they can be safely included in URL form parameter names and values.
urlFragmentEscaper() - Static method in class com.diffplug.common.net.UrlEscapers
Returns an Escaper instance that escapes strings so they can be safely included in a URL fragment.
urlPathSegmentEscaper() - Static method in class com.diffplug.common.net.UrlEscapers
Returns an Escaper instance that escapes strings so they can be safely included in URL path segments.
USER_AGENT - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP User-Agent header field name.

V

VARY - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Vary header field name.
VCARD_UTF_8 - Static variable in class com.diffplug.common.net.MediaType
 
VIA - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Via header field name.

W

WARNING - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP Warning header field name.
WEBM_AUDIO - Static variable in class com.diffplug.common.net.MediaType
 
WEBM_VIDEO - Static variable in class com.diffplug.common.net.MediaType
 
WEBP - Static variable in class com.diffplug.common.net.MediaType
 
withCharset(Charset) - Method in class com.diffplug.common.net.MediaType
Returns a new instance with the same type and subtype as this instance, with the charset parameter set to the name of the given charset.
withDefaultPort(int) - Method in class com.diffplug.common.net.HostAndPort
Provide a default port if the parsed string contained only a host.
withoutParameters() - Method in class com.diffplug.common.net.MediaType
Returns a new instance with the same type and subtype as this instance, but without any parameters.
withParameter(String, String) - Method in class com.diffplug.common.net.MediaType
Replaces all parameters with the given attribute with a single parameter with the given value.
withParameters(Multimap<String, String>) - Method in class com.diffplug.common.net.MediaType
Replaces all parameters with the given parameters.
WML_UTF_8 - Static variable in class com.diffplug.common.net.MediaType
 
WMV - Static variable in class com.diffplug.common.net.MediaType
 
WOFF - Static variable in class com.diffplug.common.net.MediaType
Media type for the Web Open Font Format (WOFF) defined by the W3C.
WWW_AUTHENTICATE - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP WWW-Authenticate header field name.

X

X_CONTENT_TYPE_OPTIONS - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP X-Content-Type-Options header field name.
X_DO_NOT_TRACK - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP X-Do-Not-Track header field name.
X_FORWARDED_FOR - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP X-Forwarded-For header field name.
X_FORWARDED_PROTO - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP X-Forwarded-Proto header field name.
X_FRAME_OPTIONS - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP X-Frame-Options header field name.
X_POWERED_BY - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP X-Powered-By header field name.
X_REQUESTED_WITH - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP X-Requested-With header field name.
X_USER_IP - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP X-User-IP header field name.
X_XSS_PROTECTION - Static variable in class com.diffplug.common.net.HttpHeaders
The HTTP X-XSS-Protection header field name.
XHTML_UTF_8 - Static variable in class com.diffplug.common.net.MediaType
 
XML_UTF_8 - Static variable in class com.diffplug.common.net.MediaType
As described in RFC 3023, this constant (text/xml) is used for XML documents that are “readable by casual users.” MediaType.APPLICATION_XML_UTF_8 is provided for documents that are intended for applications.
xmlAttributeEscaper() - Static method in class com.diffplug.common.xml.XmlEscapers
Returns an Escaper instance that escapes special characters in a string so it can safely be included in XML document as an attribute value.
xmlContentEscaper() - Static method in class com.diffplug.common.xml.XmlEscapers
Returns an Escaper instance that escapes special characters in a string so it can safely be included in an XML document as element content.
XmlEscapers - Class in com.diffplug.common.xml
Escaper instances suitable for strings to be included in XML attribute values and elements’ text contents.
XRD_UTF_8 - Static variable in class com.diffplug.common.net.MediaType
Media type for Extensible Resource Descriptors.

Z

ZIP - Static variable in class com.diffplug.common.net.MediaType
 
A B C D E F G H I J K L M N O P Q R S T U V W X Z 
Skip navigation links

com.diffplug.durian:durian-parse:1.2.0 by DiffPlug