Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Module « PySide6.QtCore »

Classe « QJsonValue »

Informations générales

Héritage

builtins.object
    Object
        QJsonValue

Définition

class QJsonValue(Object):

Description [extrait de QJsonValue.__doc__]

QJsonValue(self, a: PySide6.QtCore.QJsonArray) -> None
QJsonValue(self, arg__1: PySide6.QtCore.QJsonValue.Type = PySide6.QtCore.QJsonValue.Type.Null) -> None
QJsonValue(self, b: bool) -> None
QJsonValue(self, n: float) -> None
QJsonValue(self, n: int) -> None
QJsonValue(self, o: Dict[str, PySide6.QtCore.QJsonValue]) -> None
QJsonValue(self, other: Union[PySide6.QtCore.QJsonValue, PySide6.QtCore.QJsonValue.Type, bool, PySide6.QtCore.QJsonArray, Dict[str, PySide6.QtCore.QJsonValue], str, bytes, float, int]) -> None
QJsonValue(self, s: str) -> None
QJsonValue(self, s: bytes) -> None
QJsonValue(self, v: int) -> None

Constructeur(s)

Signature du constructeur Description
__new__(*args, **kwargs) Create and return a new object. See help(type) for accurate signature. [extrait de __new__.__doc__]

Liste des attributs statiques

Nom de l'attribut Valeur
ArrayPySide6.QtCore.QJsonValue.Type.Array
BoolPySide6.QtCore.QJsonValue.Type.Bool
DoublePySide6.QtCore.QJsonValue.Type.Double
NullPySide6.QtCore.QJsonValue.Type.Null
ObjectPySide6.QtCore.QJsonValue.Type.Object
StringPySide6.QtCore.QJsonValue.Type.String
UndefinedPySide6.QtCore.QJsonValue.Type.Undefined

Liste des opérateurs

Signature de l'opérateur Description
__eq__(self, value) Return self==value. [extrait de __eq__.__doc__]
__ge__(self, value) Return self>=value. [extrait de __ge__.__doc__]
__gt__(self, value) Return self>value. [extrait de __gt__.__doc__]
__le__(self, value) Return self<=value. [extrait de __le__.__doc__]
__lt__(self, value) Return self<value. [extrait de __lt__.__doc__]
__ne__(self, value) Return self!=value. [extrait de __ne__.__doc__]

Liste des méthodes

Toutes les méthodes Méthodes d'instance Méthodes statiques Méthodes dépréciées
Signature de la méthodeDescription
__bool__(self) self != 0 [extrait de __bool__.__doc__]
__copy__() -> None __copy__() -> None [extrait de __copy__.__doc__]
__repr__(self) Return repr(self). [extrait de __repr__.__doc__]
fromVariant(variant: Any) -> PySide6.QtCore.QJsonValue fromVariant(variant: Any) -> PySide6.QtCore.QJsonValue [extrait de fromVariant.__doc__]
isArray(self) -> bool isArray(self) -> bool [extrait de isArray.__doc__]
isBool(self) -> bool isBool(self) -> bool [extrait de isBool.__doc__]
isDouble(self) -> bool isDouble(self) -> bool [extrait de isDouble.__doc__]
isNull(self) -> bool isNull(self) -> bool [extrait de isNull.__doc__]
isObject(self) -> bool isObject(self) -> bool [extrait de isObject.__doc__]
isString(self) -> bool isString(self) -> bool [extrait de isString.__doc__]
isUndefined(self) -> bool isUndefined(self) -> bool [extrait de isUndefined.__doc__]
swap(self, other: Union[PySide6.QtCore.QJsonValue, PySide6.QtCore.QJsonValue.Type, bool, PySide6.QtCore.QJsonArray, Dict[str, PySide6.QtCore.QJsonValue], str, bytes, float, int]) -> None swap(self, other: Union[PySide6.QtCore.QJsonValue, PySide6.QtCore.QJsonValue.Type, bool, PySide6.QtCore.QJsonArray, Dict[str, PySide6.QtCore.QJsonValue], str, bytes, float, int]) -> None [extrait de swap.__doc__]
toArray toArray(self) -> PySide6.QtCore.QJsonArray [extrait de toArray.__doc__]
toBool(self, defaultValue: bool = False) -> bool toBool(self, defaultValue: bool = False) -> bool [extrait de toBool.__doc__]
toDouble(self, defaultValue: float = 0) -> float toDouble(self, defaultValue: float = 0) -> float [extrait de toDouble.__doc__]
toInt(self, defaultValue: int = 0) -> int toInt(self, defaultValue: int = 0) -> int [extrait de toInt.__doc__]
toInteger(self, defaultValue: int = 0) -> int toInteger(self, defaultValue: int = 0) -> int [extrait de toInteger.__doc__]
toObject toObject(self) -> Dict[str, PySide6.QtCore.QJsonValue] [extrait de toObject.__doc__]
toString toString(self) -> str [extrait de toString.__doc__]
toVariant(self) -> Any toVariant(self) -> Any [extrait de toVariant.__doc__]
Type
type(self) -> PySide6.QtCore.QJsonValue.Type type(self) -> PySide6.QtCore.QJsonValue.Type [extrait de type.__doc__]

Méthodes héritées de la classe Object

__delattr__, __getattribute__, __init_subclass__, __setattr__, __subclasshook__

Méthodes héritées de la classe object

__dir__, __format__, __hash__, __reduce__, __reduce_ex__, __sizeof__, __str__