Example usage for org.apache.mahout.cf.taste.model IDMigrator toStringID

List of usage examples for org.apache.mahout.cf.taste.model IDMigrator toStringID

Introduction

In this page you can find the example usage for org.apache.mahout.cf.taste.model IDMigrator toStringID.

Prototype

String toStringID(long longID) throws TasteException;

Source Link

Usage

From source file:net.myrrix.common.OneWayMigratorTest.java

License:Apache License

@Test(expected = UnsupportedOperationException.class)
public void testBackward() throws Exception {
    IDMigrator migrator = new OneWayMigrator();
    migrator.toStringID(0L);
}