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

org.gnome.glib.NumberParserError Maven / Gradle / Ivy

// Java-GI - Java language bindings for GObject-Introspection-based libraries
// Copyright (C) 2022-2024 Jan-Willem Harmannij
//
// SPDX-License-Identifier: LGPL-2.1-or-later
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, see .
//
// This file has been generated with Java-GI.
// Do not edit this file directly!
// Visit  for more information.
//
package org.gnome.glib;

import io.github.jwharm.javagi.base.Enumeration;
import java.lang.Override;
import javax.annotation.processing.Generated;

/**
 * Error codes returned by functions converting a string to a number.
 * @version 2.54
 */
@Generated("io.github.jwharm.JavaGI")
public enum NumberParserError implements Enumeration {
    /**
     * String was not a valid number.
     */
    INVALID(0),

    /**
     * String was a number, but out of bounds.
     */
    OUT_OF_BOUNDS(1);

    static {
        GLib.javagi$ensureInitialized();
    }

    private final int value;

    /**
     * Create a new NumberParserError for the provided value
     *
     * @param value the enum value
     */
    private NumberParserError(int value) {
        this.value = value;;
    }

    /**
     * Create a new NumberParserError for the provided value
     *
     * @param value the enum value
     * @return the enum for the provided value
     */
    public static NumberParserError of(int value) {
        return switch(value) {
            case 0 -> INVALID;
            case 1 -> OUT_OF_BOUNDS;
            default -> throw new IllegalStateException("Unexpected value: " + value);
        } ;
    }

    /**
     * Get the numeric value of this enum
     *
     * @return the enum value
     */
    @Override
    public int getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy