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

com.github.rvesse.airline.help.man.ManSections Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
/**
 * Copyright (C) 2010-15 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.github.rvesse.airline.help.man;

/**
 * Standard man page section numbers
 */
public class ManSections {

    // From http://stackoverflow.com/a/62972/107591

    /**
     * General Commands
     */
    public static final int GENERAL_COMMANDS = 1;

    /**
     * System Calls
     */
    public static final int SYSTEM_CALLS = 2;

    /**
     * C Library Functions
     */
    public static final int C_LIBRARY_FUNCTIONS = 3;

    /**
     * Special files
     */
    public static final int SPECIAL_FILES = 4;

    /**
     * File formats
     */
    public static final int FILE_FORMATS = 5;

    /**
     * Games and Screensavers
     */
    public static final int GAMES_AND_SCREENSAVERS = 6;

    /**
     * Miscellaneous
     */
    public static final int MISCELLANEOUS = 7;

    /**
     * System administration and daemons
     */
    public static final int SYSTEM_ADMIN_AND_DAEMONS = 8;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy