org.apache.flink.graph.drivers.transform.GraphKeyTypeTransform.LongValueToUnsignedByte Java Examples
The following examples show how to use
org.apache.flink.graph.drivers.transform.GraphKeyTypeTransform.LongValueToUnsignedByte.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source Project: Flink-CEPplus Author: ljygz File: GraphKeyTypeTransformTest.java License: Apache License 2.0 | 5 votes |
@Test public void testToByte() throws Exception { TranslateFunction<LongValue, Byte> translator = new LongValueToUnsignedByte(); Assert.assertEquals(Byte.valueOf((byte) 0), translator.translate(new LongValue(0L), null)); Assert.assertEquals(Byte.valueOf(Byte.MIN_VALUE), translator.translate(new LongValue((long) Byte.MAX_VALUE + 1), null)); Assert.assertEquals(Byte.valueOf((byte) -1), translator.translate(new LongValue(LongValueToUnsignedByte.MAX_VERTEX_COUNT - 1), null)); }
Example #2
Source Project: Flink-CEPplus Author: ljygz File: GraphKeyTypeTransformTest.java License: Apache License 2.0 | 5 votes |
@Test public void testFromByte() throws Exception { TranslateFunction<Byte, LongValueWithProperHashCode> translator = new UnsignedByteToLongValueWithProperHashCode(); Assert.assertEquals(new LongValueWithProperHashCode(0L), translator.translate((byte) 0, longValueWithProperHashCode)); Assert.assertEquals(new LongValueWithProperHashCode(Byte.MAX_VALUE + 1), translator.translate(Byte.MIN_VALUE, longValueWithProperHashCode)); Assert.assertEquals(new LongValueWithProperHashCode(LongValueToUnsignedByte.MAX_VERTEX_COUNT - 1), translator.translate((byte) -1, longValueWithProperHashCode)); }
Example #3
Source Project: flink Author: flink-tpc-ds File: GraphKeyTypeTransformTest.java License: Apache License 2.0 | 5 votes |
@Test public void testToByte() throws Exception { TranslateFunction<LongValue, Byte> translator = new LongValueToUnsignedByte(); Assert.assertEquals(Byte.valueOf((byte) 0), translator.translate(new LongValue(0L), null)); Assert.assertEquals(Byte.valueOf(Byte.MIN_VALUE), translator.translate(new LongValue((long) Byte.MAX_VALUE + 1), null)); Assert.assertEquals(Byte.valueOf((byte) -1), translator.translate(new LongValue(LongValueToUnsignedByte.MAX_VERTEX_COUNT - 1), null)); }
Example #4
Source Project: flink Author: flink-tpc-ds File: GraphKeyTypeTransformTest.java License: Apache License 2.0 | 5 votes |
@Test public void testFromByte() throws Exception { TranslateFunction<Byte, LongValueWithProperHashCode> translator = new UnsignedByteToLongValueWithProperHashCode(); Assert.assertEquals(new LongValueWithProperHashCode(0L), translator.translate((byte) 0, longValueWithProperHashCode)); Assert.assertEquals(new LongValueWithProperHashCode(Byte.MAX_VALUE + 1), translator.translate(Byte.MIN_VALUE, longValueWithProperHashCode)); Assert.assertEquals(new LongValueWithProperHashCode(LongValueToUnsignedByte.MAX_VERTEX_COUNT - 1), translator.translate((byte) -1, longValueWithProperHashCode)); }
Example #5
Source Project: flink Author: apache File: GraphKeyTypeTransformTest.java License: Apache License 2.0 | 5 votes |
@Test public void testToByte() throws Exception { TranslateFunction<LongValue, Byte> translator = new LongValueToUnsignedByte(); Assert.assertEquals(Byte.valueOf((byte) 0), translator.translate(new LongValue(0L), null)); Assert.assertEquals(Byte.valueOf(Byte.MIN_VALUE), translator.translate(new LongValue((long) Byte.MAX_VALUE + 1), null)); Assert.assertEquals(Byte.valueOf((byte) -1), translator.translate(new LongValue(LongValueToUnsignedByte.MAX_VERTEX_COUNT - 1), null)); }
Example #6
Source Project: flink Author: apache File: GraphKeyTypeTransformTest.java License: Apache License 2.0 | 5 votes |
@Test public void testFromByte() throws Exception { TranslateFunction<Byte, LongValueWithProperHashCode> translator = new UnsignedByteToLongValueWithProperHashCode(); Assert.assertEquals(new LongValueWithProperHashCode(0L), translator.translate((byte) 0, longValueWithProperHashCode)); Assert.assertEquals(new LongValueWithProperHashCode(Byte.MAX_VALUE + 1), translator.translate(Byte.MIN_VALUE, longValueWithProperHashCode)); Assert.assertEquals(new LongValueWithProperHashCode(LongValueToUnsignedByte.MAX_VERTEX_COUNT - 1), translator.translate((byte) -1, longValueWithProperHashCode)); }
Example #7
Source Project: Flink-CEPplus Author: ljygz File: GraphKeyTypeTransformTest.java License: Apache License 2.0 | 4 votes |
@Test(expected = IllegalArgumentException.class) public void testToByteUpperOutOfRange() throws Exception { new LongValueToUnsignedByte().translate(new LongValue(LongValueToUnsignedByte.MAX_VERTEX_COUNT), null); }
Example #8
Source Project: Flink-CEPplus Author: ljygz File: GraphKeyTypeTransformTest.java License: Apache License 2.0 | 4 votes |
@Test(expected = IllegalArgumentException.class) public void testToByteLowerOutOfRange() throws Exception { new LongValueToUnsignedByte().translate(new LongValue(-1), null); }
Example #9
Source Project: flink Author: flink-tpc-ds File: GraphKeyTypeTransformTest.java License: Apache License 2.0 | 4 votes |
@Test(expected = IllegalArgumentException.class) public void testToByteUpperOutOfRange() throws Exception { new LongValueToUnsignedByte().translate(new LongValue(LongValueToUnsignedByte.MAX_VERTEX_COUNT), null); }
Example #10
Source Project: flink Author: flink-tpc-ds File: GraphKeyTypeTransformTest.java License: Apache License 2.0 | 4 votes |
@Test(expected = IllegalArgumentException.class) public void testToByteLowerOutOfRange() throws Exception { new LongValueToUnsignedByte().translate(new LongValue(-1), null); }
Example #11
Source Project: flink Author: apache File: GraphKeyTypeTransformTest.java License: Apache License 2.0 | 4 votes |
@Test(expected = IllegalArgumentException.class) public void testToByteUpperOutOfRange() throws Exception { new LongValueToUnsignedByte().translate(new LongValue(LongValueToUnsignedByte.MAX_VERTEX_COUNT), null); }
Example #12
Source Project: flink Author: apache File: GraphKeyTypeTransformTest.java License: Apache License 2.0 | 4 votes |
@Test(expected = IllegalArgumentException.class) public void testToByteLowerOutOfRange() throws Exception { new LongValueToUnsignedByte().translate(new LongValue(-1), null); }