All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.antkorwin.pdfinder.TextToken Maven / Gradle / Ivy

There is a newer version: 0.6
Show newest version
package com.antkorwin.pdfinder;


import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;


/**
 * Text block from PDF file,
 * describes position, source page and content.
 *
 * @author Korovin Anatoliy
 */
@Data
@Builder
@AllArgsConstructor
public class TextToken {

	private String text;
	private TextPosition position;
	private Integer pageNumber;

	public boolean isEmptyToken() {
		return this.equals(EMPTY_TOKEN);
	}

	static TextToken EMPTY_TOKEN = new TextToken(null, null, null);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy