Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.squarespace.cldrengine.internal.Vector3Arrow Maven / Gradle / Ivy
package com.squarespace.cldrengine.internal;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
public class Vector3Arrow extends VectorArrowImpl {
@SuppressWarnings("unchecked")
public Vector3Arrow(int offset, KeyIndex index1, KeyIndex index2, KeyIndex index3) {
super(offset, Arrays.asList(
(KeyIndex)index1,
(KeyIndex)index2,
(KeyIndex)index3));
}
public String get(PrimitiveBundle bundle, T key1, S key2, U key3) {
return this.get(bundle, new Object[] { key1, key2, key3 });
}
public String get(PrimitiveBundle bundle, T[] key1, S key2, U key3) {
return this.get(bundle, new Object[] { key1, key2, key3 });
}
public String get(PrimitiveBundle bundle, T[] key1, S[] key2, U key3) {
return this.get(bundle, new Object[] { key1, key2, key3 });
}
public String get(PrimitiveBundle bundle, T[] key1, S[] key2, U[] key3) {
return this.get(bundle, new Object[] { key1, key2, key3 });
}
public String get(PrimitiveBundle bundle, T[] key1, S key2, U[] key3) {
return this.get(bundle, new Object[] { key1, key2, key3 });
}
public String get(PrimitiveBundle bundle, T key1, S[] key2, U[] key3) {
return this.get(bundle, new Object[] { key1, key2, key3 });
}
public String get(PrimitiveBundle bundle, T key1, S key2, U[] key3) {
return this.get(bundle, new Object[] { key1, key2, key3 });
}
@SuppressWarnings("unchecked")
public Map>> mapping(PrimitiveBundle bundle) {
return this.exists(bundle) ? (Map>>)this._mapping(bundle, 0, 0) : new HashMap<>();
}
}