Github user rmetzger commented on a diff in the pull request:

    https://github.com/apache/flink/pull/1191#discussion_r41595057
  
    --- Diff: 
flink-java/src/main/java/org/apache/flink/api/java/typeutils/ValueTypeInfo.java 
---
    @@ -51,7 +51,18 @@
     public class ValueTypeInfo<T extends Value> extends TypeInformation<T> 
implements AtomicType<T> {
     
        private static final long serialVersionUID = 1L;
    -   
    +
    +   public static final ValueTypeInfo<BooleanValue> BOOLEAN_VALUE_TYPE_INFO 
= new ValueTypeInfo<>(BooleanValue.class);
    +   public static final ValueTypeInfo<ByteValue> BYTE_VALUE_TYPE_INFO = new 
ValueTypeInfo<>(ByteValue.class);
    +   public static final ValueTypeInfo<CharValue> CHAR_VALUE_TYPE_INFO = new 
ValueTypeInfo<>(CharValue.class);
    +   public static final ValueTypeInfo<DoubleValue> DOUBLE_VALUE_TYPE_INFO = 
new ValueTypeInfo<>(DoubleValue.class);
    +   public static final ValueTypeInfo<FloatValue> FLOAT_VALUE_TYPE_INFO = 
new ValueTypeInfo<>(FloatValue.class);
    +   public static final ValueTypeInfo<IntValue> INT_VALUE_TYPE_INFO = new 
ValueTypeInfo<>(IntValue.class);
    +   public static final ValueTypeInfo<LongValue> LONG_VALUE_TYPE_INFO = new 
ValueTypeInfo<>(LongValue.class);
    +   public static final ValueTypeInfo<NullValue> NULL_VALUE_TYPE_INFO = new 
ValueTypeInfo<>(NullValue.class);
    +   public static final ValueTypeInfo<ShortValue> SHORT_VALUE_TYPE_INFO = 
new ValueTypeInfo<>(ShortValue.class);
    +   public static final ValueTypeInfo<StringValue> STRING_VALUE_TYPE_INFO = 
new ValueTypeInfo<>(StringValue.class);
    --- End diff --
    
    Is the purpose of these statics that users's don't have to instantiate them 
themselves?
    I'm just wondering because IntelliJ is marking some of them as unused.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to