UNPKG

java-class-tools

Version:

Read and write java class files in node or browser.

38 lines (36 loc) 784 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports["default"] = void 0; /*! * https://github.com/leonardosnt/java-class-tools * * Copyright (C) 2017 leonardosnt * Licensed under the MIT License. See LICENSE file in the project root for full license information. */ var Modifier = { PUBLIC: 0x0001, PRIVATE: 0x0002, PROTECTED: 0x0004, STATIC: 0x0008, FINAL: 0x0010, SYNCHRONIZED: 0x0020, VOLATILE: 0x0040, BRIDGE: 0x0040, TRANSIENT: 0x0080, VARARGS: 0x0080, NATIVE: 0x0100, ABSTRACT: 0x0400, STRICT: 0x0800, SYNTHETIC: 0x1000, // Class only INTERFACE: 0x0200, SUPER: 0x0020, ANNOTATION: 0x2000, ENUM: 0x4000, // Java SE 9 MODULE: 0x8000 }; var _default = Modifier; exports["default"] = _default;