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

com.windowsazure.samples.blob.LeaseStatus Maven / Gradle / Ivy

Go to download

jpa4azure, implements a subset of the JPA specification using Azure Storage for pesisting beans. see http://jpa4azure.codeplex.com for more information.

The newest version!
package com.windowsazure.samples.blob;


public enum LeaseStatus {
	LOCKED,
	UNLOCKED,
	UNKNOWN_LEASE_STATUS;
	
	public static LeaseStatus fromString(String text) {
		for (LeaseStatus leaseStatus : values()) {
			if (leaseStatus.toString().equalsIgnoreCase(text))
				return leaseStatus;
		}
		return UNKNOWN_LEASE_STATUS;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy