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

reciter.engine.analysis.evidence.AuthorNameEvidence Maven / Gradle / Ivy

The newest version!
package reciter.engine.analysis.evidence;

import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBDocument;
import com.fasterxml.jackson.annotation.JsonInclude;

import lombok.Data;
import lombok.ToString;
import reciter.model.identity.AuthorName;

@Data
@JsonInclude(JsonInclude.Include.NON_EMPTY)
@ToString
@DynamoDBDocument
public class AuthorNameEvidence {
    private AuthorName institutionalAuthorName;
    private AuthorName articleAuthorName;
    private double nameScoreTotal;
    private String nameMatchFirstType;
    private double nameMatchFirstScore;
    private String nameMatchMiddleType;
    private double nameMatchMiddleScore;
    private String nameMatchLastType;
    private double nameMatchLastScore;
    private String nameMatchModifier;
    private double nameMatchModifierScore;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy