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

org.qbicc.object.Segment Maven / Gradle / Ivy

There is a newer version: 0.77.0
Show newest version
package org.qbicc.object;

/**
 * A segment into which sections may be defined.
 */
public enum Segment {
    /**
     * The so-called "text" segment, where read-only program information is loaded.
     */
    TEXT("text"),
    /**
     * The so-called "data" segment, where read-write program information is loaded.
     */
    DATA("data"),
    ;

    private final String str;

    Segment(final String str) {
        this.str = str;
    }

    @Override
    public String toString() {
        return str;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy