com.univocity.api.entity.html.builders.PartialPath Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of univocity-html-parser-api Show documentation
Show all versions of univocity-html-parser-api Show documentation
Univocity HTML Parser Public API
/*
* Copyright (c) 2013 Univocity Software Pty Ltd. All rights reserved.
* This file is subject to the terms and conditions defined in file
* 'LICENSE.txt', which is part of this source code package.
*/
package com.univocity.api.entity.html.builders;
import com.univocity.api.entity.html.*;
/**
* A `PartialPath` can be created from an entity using {@link HtmlEntitySettings#newPath()} or from an entity's group,
* using {@link Group#copyPath()}. It allows the specification of a reusable path, with common matching rules.
*
* Fields can be added to the `PartialPath`, and the user needs to provide only the additional rules required to
* match elements from the starting point defined by the `PartialPath`, and how to collect the data from the matched
* elements, using the methods available from a {@link ContentReader}.
*
* @see HtmlEntitySettings
* @see PartialPathStart
* @see FieldDefinition
* @see PathCopy
*
* @author Univocity Software Pty Ltd - [email protected]
*/
public interface PartialPath extends ElementFilter, PartialPathStart, FieldDefinition, PathCopy, Trigger {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy