Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
QtQmlStatus.java
Go to the documentation of this file.
1// Copyright (C) 2024 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4package org.qtproject.qt.android;
5
6import java.lang.IllegalArgumentException;
7
11public enum QtQmlStatus {
15 NULL(0),
16
23
28
33
34 private final int m_value;
35
36 QtQmlStatus(int value) { this.m_value = value; }
37
38 QtQmlStatus() { this.m_value = ordinal(); }
39
40 static QtQmlStatus fromInt(int value) throws IllegalArgumentException
41 {
42 for (QtQmlStatus enumValue : QtQmlStatus.values()) {
43 if (enumValue.m_value == value) {
44 return enumValue;
45 }
46 }
47 throw new IllegalArgumentException("No QtQmlStatus enum with value " + value);
48 }
49}
static QtQmlStatus fromInt(int value)
EGLOutputLayerEXT EGLint EGLAttrib value
[5]