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

tech.guyi.ipojo.compile.lib.expand.manifest.entry.Manifest Maven / Gradle / Ivy

There is a newer version: 1.0.0.4
Show newest version
package tech.guyi.ipojo.compile.lib.expand.manifest.entry;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@NoArgsConstructor
@AllArgsConstructor
public class Manifest {

    private boolean override = true;
    private int order = 999;
    private String key;
    private String value;

    public Manifest(String key, String value) {
        this.key = key;
        this.value = value;
    }

    public String format(){
        return String.format("%s: %s",this.getKey(),this.getValue());
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy