
com.dropbox.core.util.Maybe Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
A client library for Dropbox's HTTP-based "Core API".
The newest version!
package com.dropbox.core.util;
public final class Maybe
{
private final boolean isJust;
private final T value;
private Maybe(boolean isJust, T value) { this.isJust = isJust; this.value = value; }
private static final Maybe
© 2015 - 2025 Weber Informatics LLC | Privacy Policy