MCPcopy Create free account
hub / github.com/jwtk/jjwt / isEmpty

Method isEmpty

impl/src/main/java/io/jsonwebtoken/impl/Payload.java:116–118  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

114 }
115
116 boolean isEmpty() {
117 return !isClaims() && !isString() && Bytes.isEmpty(this.bytes) && this.inputStreamEmpty;
118 }
119
120 public OutputStream compress(OutputStream out) {
121 return this.zip != null ? zip.compress(out) : out;

Callers 2

compactMethod · 0.95
parseMethod · 0.95

Calls 3

isClaimsMethod · 0.95
isStringMethod · 0.95
isEmptyMethod · 0.95

Tested by

no test coverage detected