FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
graphql-java/src/main/java/graphql/Assert.java at master · feifeiq/graphql-java · GitHub
feifeiq
/
graphql-java
Public
forked from
graphql-java/graphql-java
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
graphql-java
/
src
/
main
/
java
/
graphql
/
Assert.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
57 lines (45 loc) · 1.78 KB
Breadcrumbs
graphql-java
/
src
/
main
/
java
/
graphql
/
Assert.java
Copy path
File metadata and controls
57 lines (45 loc) · 1.78 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package
graphql
;
import
java
.
util
.
Collection
;
@
Internal
public
class
Assert
{
public
static
<
T
>
T
assertNotNull
(
T
object
,
String
errorMessage
) {
if
(
object
!=
null
)
return
object
;
throw
new
AssertException
(
errorMessage
);
}
public
static
<
T
>
T
assertNotNull
(
T
object
) {
if
(
object
!=
null
)
return
object
;
throw
new
AssertException
(
"Object required to be not null"
);
}
public
static
<
T
>
T
assertNeverCalled
() {
throw
new
AssertException
(
"Should never been called"
);
}
public
static
<
T
>
T
assertShouldNeverHappen
(
String
errorMessage
) {
throw
new
AssertException
(
"Internal error: should never happen: "
+
errorMessage
);
}
public
static
<
T
>
T
assertShouldNeverHappen
() {
throw
new
AssertException
(
"Internal error: should never happen"
);
}
public
static
<
T
>
Collection
<
T
>
assertNotEmpty
(
Collection
<
T
>
c
,
String
errorMessage
) {
if
(
c
==
null
||
c
.
isEmpty
())
throw
new
AssertException
(
errorMessage
);
return
c
;
}
public
static
void
assertTrue
(
boolean
condition
,
String
errorMessage
) {
if
(
condition
)
return
;
throw
new
AssertException
(
errorMessage
);
}
private
static
final
String
invalidNameErrorMessage
=
"Name must be non-null, non-empty and match [_A-Za-z][_0-9A-Za-z]*"
;
/**
* Validates that the Lexical token name matches the current spec.
* currently non null, non empty,
*
* @param name - the name to be validated.
*
* @return the name if valid, or AssertException if invalid.
*/
public
static
String
assertValidName
(
String
name
) {
if
(
name
!=
null
&& !
name
.
isEmpty
() &&
name
.
matches
(
"[_A-Za-z][_0-9A-Za-z]*"
)) {
return
name
;
}
throw
new
AssertException
(
invalidNameErrorMessage
);
}
}
Back
|
FazBrowse Home
|
New Git URL