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

com.github.vicenthy.filehelpers4j.annotations.Seletor Maven / Gradle / Ivy

Go to download

FileHelpers4J is a library that automates the tedious task of parsing and creating structured text files. It handles fixed width or delimited files with Java annotations sweetness

The newest version!
package com.github.vicenthy.filehelpers4j.annotations;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import com.github.vicenthy.filehelpers4j.masterdetail.CommonSelector;
import com.github.vicenthy.filehelpers4j.masterdetail.RecordAction;
import com.github.vicenthy.filehelpers4j.masterdetail.SelectorString;

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface Seletor {
	String token();
	RecordAction type();
	SelectorString seletorString() default SelectorString.Contains;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy