Package org.apache.jena.iri
Interface IRIComponents
-
- All Known Implementing Classes:
AbsIRIImpl,IRIFactory,IRIFactoryImpl,IRIImpl,Parser,ResolvedRelativeIRI,SchemeSpecification,Violation,ViolationCodes.Initialize,ViolationImpl
public interface IRIComponentsThis interface provides constants used as the return value ofViolation.getComponent(). Each identifies a component of an IRI. The values of these constants will change with future releases, since they integrate tightly with implementation details.
-
-
Field Summary
Fields Modifier and Type Field Description static intAUTHORITYIndicates the authority component.static intFRAGMENTIndicates the fragment component.static intHOSTIndicates the host part of the authority component.static intPATHIndicates the path component.static intPATHQUERYIndicates the PATH and QUERY components combined, for schemes in which ? is not special (e.g.static intPORTIndicates the port part of the authority component.static intQUERYIndicates the query component.static intSCHEMEIndicates the scheme component.static intUSERIndicates the user information part of the authority component, including the password if any.
-
-
-
Field Detail
-
SCHEME
static final int SCHEME
Indicates the scheme component.- See Also:
- Constant Field Values
-
AUTHORITY
static final int AUTHORITY
Indicates the authority component.- See Also:
- Constant Field Values
-
USER
static final int USER
Indicates the user information part of the authority component, including the password if any.- See Also:
- Constant Field Values
-
HOST
static final int HOST
Indicates the host part of the authority component.- See Also:
- Constant Field Values
-
PORT
static final int PORT
Indicates the port part of the authority component.- See Also:
- Constant Field Values
-
PATH
static final int PATH
Indicates the path component.- See Also:
- Constant Field Values
-
QUERY
static final int QUERY
Indicates the query component.- See Also:
- Constant Field Values
-
FRAGMENT
static final int FRAGMENT
Indicates the fragment component.- See Also:
- Constant Field Values
-
PATHQUERY
static final int PATHQUERY
Indicates the PATH and QUERY components combined, for schemes in which ? is not special (e.g. ftp and file)- See Also:
- Constant Field Values
-
-