1 /*
2 * Themis: Java Project Framework
3 * Copyright 2012-2026. Tony Washer
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy
7 * of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17 package io.github.tonywasher.joceanus.themis.xanalysis.parser.base;
18
19 /**
20 * Modifier node.
21 */
22 public interface ThemisXAnalysisModifierList {
23 /**
24 * Is Public?
25 *
26 * @return true/false
27 */
28 boolean isPublic();
29
30 /**
31 * Is Private?
32 *
33 * @return true/false
34 */
35 boolean isPrivate();
36
37 /**
38 * Is Protected?
39 *
40 * @return true/false
41 */
42 boolean isProtected();
43
44 /**
45 * Is Static?
46 *
47 * @return true/false
48 */
49 boolean isStatic();
50
51 /**
52 * Is Final?
53 *
54 * @return true/false
55 */
56 boolean isFinal();
57
58 /**
59 * Is Synchronized?
60 *
61 * @return true/false
62 */
63 boolean isSynchronized();
64
65 /**
66 * Is Volatile?
67 *
68 * @return true/false
69 */
70 boolean isVolatile();
71
72 /**
73 * Is Transient?
74 *
75 * @return true/false
76 */
77 boolean isTransient();
78
79 /**
80 * Is Transitive?
81 *
82 * @return true/false
83 */
84 boolean isTransitive();
85
86 /**
87 * Is Native?
88 *
89 * @return true/false
90 */
91 boolean isNative();
92
93 /**
94 * Is Abstract?
95 *
96 * @return true/false
97 */
98 boolean isAbstract();
99
100 /**
101 * Is Sealed?
102 *
103 * @return true/false
104 */
105 boolean isSealed();
106 }