本文整理匯總了Java中com.google.common.hash.HashCode.fromString方法的典型用法代碼示例。如果您正苦於以下問題:Java HashCode.fromString方法的具體用法?Java HashCode.fromString怎麽用?Java HashCode.fromString使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.google.common.hash.HashCode
的用法示例。
在下文中一共展示了HashCode.fromString方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: lookupHashFromAsset
import com.google.common.hash.HashCode; //導入方法依賴的package包/類
/**
* Retrieves the hash maps which are stored as key, value pairs within the conanmanifest file
* @param tx
* @param bucket
* @param assetPath
* @return hashcode of the file
*/
public HashCode lookupHashFromAsset(final StorageTx tx, final Bucket bucket, final String assetPath) {
checkNotNull(tx);
checkNotNull(bucket);
checkNotNull(assetPath);
AttributesMap attributes = getAttributes(tx, bucket, assetPath);
if(attributes != null) {
String filename = getFilenameFromPath(assetPath);
if (attributes.contains(filename)) {
return HashCode.fromString((String) attributes.get(filename));
}
}
return null;
}
示例2: deserialize
import com.google.common.hash.HashCode; //導入方法依賴的package包/類
@Override
public HashCode deserialize(final JsonElement jsonElement, final Type type, final JsonDeserializationContext context) throws JsonParseException {
Preconditions.checkNotNull(jsonElement);
Preconditions.checkNotNull(type);
Preconditions.checkNotNull(context);
try {
return HashCode.fromString(jsonElement.getAsString());
} catch (final IllegalArgumentException e) {
throw new JsonParseException(e);
}
}