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

com.michaelhradek.aurkitu.Config Maven / Gradle / Ivy

There is a newer version: 0.0.7.6
Show newest version
package com.michaelhradek.aurkitu;

/**
 * @author m.hradek
 *
 */
public final class Config {

    /**
     * Only use on your local dev box.
     */
    public static final boolean DEBUG = false;

    /**
     *
     */
    public static final String FILE_EXTENSION = "fbs";

    /**
     * At the top of all generated schema files
     */
    public static final String SCHEMA_INTRO_COMMENT =
            "// Aurkitu automatically generated IDL FlatBuffer Schema";

    /**
     * Optional which includes a {@link String#hashCode()} of the contents of the schema file.
     */
    public static final String SCHEMA_VERSION_COMMENT =
            "// @version: " + Config.SCHEMA_VERSION_PLACEHOLDER;

    /**
     * The placeholder for the optional version line specified at
     * {@link Config#SCHEMA_VERSION_COMMENT}
     */
    public static final String SCHEMA_VERSION_PLACEHOLDER = "AURKITU-SCHEMA-VERSION-ghjtyu567FHGFD";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy