Uses of Class
ai.timefold.jpyinterpreter.types.PythonNone
Packages that use PythonNone
Package
Description
-
Uses of PythonNone in ai.timefold.jpyinterpreter.builtins
Methods in ai.timefold.jpyinterpreter.builtins that return PythonNoneModifier and TypeMethodDescriptionstatic PythonNoneGlobalBuiltins.delattr(List<PythonLikeObject> positionalArgs, Map<PythonString, PythonLikeObject> keywordArgs, PythonLikeObject instance) -
Uses of PythonNone in ai.timefold.jpyinterpreter.types
Fields in ai.timefold.jpyinterpreter.types declared as PythonNoneMethods in ai.timefold.jpyinterpreter.types that return PythonNoneModifier and TypeMethodDescriptionPythonByteArray.appendByte(PythonInteger addedByte) PythonByteArray.clear()PythonGenerator.close()PythonByteArray.deleteIndex(PythonInteger index) PythonByteArray.deleteSlice(PythonSlice deletedSlice) PythonByteArray.extend(PythonLikeObject iterable) PythonByteArray.insert(PythonInteger index, PythonInteger value) PythonByteArray.remove(PythonInteger item) PythonByteArray.reverse()PythonByteArray.setByte(PythonInteger index, PythonInteger item) PythonByteArray.setSlice(PythonSlice slice, PythonLikeObject iterable) Methods in ai.timefold.jpyinterpreter.types with parameters of type PythonNoneModifier and TypeMethodDescriptionPythonByteArray.leftStrip(PythonNone ignored) PythonBytes.leftStrip(PythonNone ignored) PythonString.leftStrip(PythonNone ignored) PythonByteArray.rightSplit(PythonNone ignored) PythonByteArray.rightSplit(PythonNone seperator, PythonInteger maxSplits) PythonBytes.rightSplit(PythonNone ignored) PythonBytes.rightSplit(PythonNone seperator, PythonInteger maxSplits) PythonString.rightSplit(PythonNone ignored) PythonString.rightSplit(PythonNone ignored, PythonInteger maxSplits) PythonByteArray.rightStrip(PythonNone ignored) PythonBytes.rightStrip(PythonNone ignored) PythonString.rightStrip(PythonNone ignored) PythonByteArray.split(PythonNone ignored) PythonByteArray.split(PythonNone seperator, PythonInteger maxSplits) PythonBytes.split(PythonNone ignored) PythonBytes.split(PythonNone seperator, PythonInteger maxSplits) PythonString.split(PythonNone ignored) PythonString.split(PythonNone ignored, PythonInteger maxSplits) PythonByteArray.strip(PythonNone ignored) PythonBytes.strip(PythonNone ignored) PythonString.strip(PythonNone ignored) PythonByteArray.translate(PythonNone table) PythonByteArray.translate(PythonNone table, PythonByteArray delete) PythonBytes.translate(PythonNone table) PythonBytes.translate(PythonNone table, PythonBytes delete) -
Uses of PythonNone in ai.timefold.jpyinterpreter.types.collections
Methods in ai.timefold.jpyinterpreter.types.collections that return PythonNoneModifier and TypeMethodDescriptionPythonLikeSet.addItem(PythonLikeObject pythonLikeObject) PythonLikeList.append(PythonLikeObject item) PythonLikeDict.clearDict()PythonLikeList.clearList()PythonLikeSet.clearSet()PythonLikeList.deleteItem(PythonInteger index) PythonLikeList.deleteSlice(PythonSlice slice) PythonLikeSet.differenceUpdate(PythonLikeObject collection) PythonLikeSet.discard(PythonLikeObject object) PythonLikeList.extend(PythonLikeObject item) PythonLikeList.insert(PythonInteger index, PythonLikeObject item) PythonLikeSet.intersectionUpdate(PythonLikeObject collection) PythonLikeList.remove(PythonLikeObject item) PythonLikeDict.removeItemOrError(PythonLikeObject key) PythonLikeSet.removeOrError(PythonLikeObject object) PythonLikeList.reverse()PythonLikeDict.setItem(PythonLikeObject key, PythonLikeObject value) PythonLikeList.sort()PythonLikeSet.symmetricDifferenceUpdate(PythonLikeObject collection) PythonLikeDict.update(PythonLikeObject iterable) PythonLikeDict.update(PythonLikeDict other) PythonLikeSet.update(PythonLikeObject collection)