io.github.thunderz99.cosmos.dto.PartialUpdateOption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-cosmos Show documentation
Show all versions of java-cosmos Show documentation
A lightweight Azure CosmosDB client for Java
package io.github.thunderz99.cosmos.dto;
/**
* Options when using partial update methods. e.g. whether check etags to implement a
*/
public class PartialUpdateOption {
public boolean checkETag = false;
public static PartialUpdateOption checkETag(boolean checkETag){
var option = new PartialUpdateOption();
option.checkETag = checkETag;
return option;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy