aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/api/ObjectHolder.java
blob: d3b6189b18d081a2fddbc8f4279ec549ea21d536 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Roughly Enough Items by Danielshe.
 * Licensed under the MIT License.
 */

package me.shedaniel.rei.api;

public interface ObjectHolder<T> {
    int intValue();
    
    long longValue();
    
    boolean booleanValue();
    
    float floatValue();
    
    double doubleValue();
    
    String stringValue();
    
    T value();
}