com.qcloud.cos.internal.Constants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cos_api Show documentation
Show all versions of cos_api Show documentation
qcloud cos sdk for inner tencentyun
The newest version!
package com.qcloud.cos.internal;
public class Constants {
/**
* HTTP status code indicating that preconditions failed and thus the
* request failed.
*/
public static final int FAILED_PRECONDITION_STATUS_CODE = 412;
/** Kilobytes */
public static final int KB = 1024;
/** Megabytes */
public static final int MB = 1024 * KB;
/** Gigabytes */
public static final long GB = 1024 * MB;
/** The maximum allowed parts in a multipart upload. */
public static final int MAXIMUM_UPLOAD_PARTS = 10000;
}