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

com.g2forge.alexandria.java.platform.TXTSpec Maven / Gradle / Ivy

There is a newer version: 0.0.18
Show newest version
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