com.g2forge.alexandria.java.platform.TXTSpec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ax-java Show documentation
Show all versions of ax-java Show documentation
Standard Java library and the basis of the ${alexandria.name} project.
package com.g2forge.alexandria.java.platform;
import com.g2forge.alexandria.java.text.eol.EOLStyle;
import lombok.AllArgsConstructor;
import lombok.Getter;
@AllArgsConstructor
@Getter
public enum TXTSpec {
DOS(EOLStyle.DOS, EOFStyle.Add, false),
UNIX(EOLStyle.UNIX, EOFStyle.Remove, true);
public static enum EOFStyle {
Add,
Remove,
Ignore;
}
protected final EOLStyle eol;
protected final EOFStyle eof;
protected final boolean finalEOL;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy