jnidzwetzki/bitfinex-v2-wss-api-java

View on GitHub
src/main/java/com/github/jnidzwetzki/bitfinex/v2/symbol/BitfinexExecutedTradeSymbol.java

Summary

Maintainability
A
30 mins
Test Coverage
/*******************************************************************************
 *
 *    Copyright (C) 2015-2018 Jan Kristof Nidzwetzki
 *  
 *    Licensed under the Apache License, Version 2.0 (the "License");
 *    you may not use this file except in compliance with the License.
 *    You may obtain a copy of the License at
 *  
 *      http://www.apache.org/licenses/LICENSE-2.0
 *  
 *    Unless required by applicable law or agreed to in writing, software
 *    distributed under the License is distributed on an "AS IS" BASIS,
 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *    See the License for the specific language governing permissions and
 *    limitations under the License. 
 *    
 *******************************************************************************/
package com.github.jnidzwetzki.bitfinex.v2.symbol;

import com.github.jnidzwetzki.bitfinex.v2.entity.currency.BitfinexCurrencyPair;

public class BitfinexExecutedTradeSymbol implements BitfinexStreamSymbol {
    
    /**
     * The currency pair
     */
    private final BitfinexCurrencyPair currencyPair;

    BitfinexExecutedTradeSymbol(final BitfinexCurrencyPair bitfinexCurrencyPair) {
        this.currencyPair = bitfinexCurrencyPair;
    }

    @Override
    public String toString() {
        return "BitfinexExecutedTradeSymbol [currencyPair=" + currencyPair + "]";
    }

    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((currencyPair == null) ? 0 : currencyPair.hashCode());
        return result;
    }

    @Override
    public boolean equals(final Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;
        if (getClass() != obj.getClass())
            return false;
        BitfinexExecutedTradeSymbol other = (BitfinexExecutedTradeSymbol) obj;
        if (currencyPair != other.currencyPair)
            return false;
        return true;
    }
    
    /**
     * Build from bitfinex string
     * @param symbol
     * @return
     */
    public static BitfinexExecutedTradeSymbol fromBitfinexString(final String symbol) {
        final BitfinexCurrencyPair bitfinexCurrencyPair = BitfinexCurrencyPair.fromSymbolString(symbol);
        return BitfinexSymbols.executedTrades(bitfinexCurrencyPair);
    }

    /**
     * Get the currency pair
     * @return
     */
    public BitfinexCurrencyPair getCurrencyPair() {
        return currencyPair;
    }
    
}