All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.stargate.web.docsapi.service.json.DeadLeaf Maven / Gradle / Ivy

The newest version!
package io.stargate.web.docsapi.service.json;

import org.immutables.value.Value;

@Value.Immutable(prehash = true)
public interface DeadLeaf {
  String STAR = "*";
  String ARRAY = "[*]";
  DeadLeaf ARRAYLEAF = ImmutableDeadLeaf.builder().name(DeadLeaf.ARRAY).build();
  DeadLeaf STARLEAF = ImmutableDeadLeaf.builder().name(DeadLeaf.STAR).build();

  String getName();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy