tmf/lttng: Update 2014 copyrights
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / statevalue / StringStateValue.java
CommitLineData
a52fde77 1/*******************************************************************************
11252342 2 * Copyright (c) 2012, 2013 Ericsson
a52fde77
AM
3 * Copyright (c) 2010, 2011 École Polytechnique de Montréal
4 * Copyright (c) 2010, 2011 Alexandre Montplaisir <alexandre.montplaisir@gmail.com>
2cb26548 5 *
a52fde77
AM
6 * All rights reserved. This program and the accompanying materials are
7 * made available under the terms of the Eclipse Public License v1.0 which
8 * accompanies this distribution, and is available at
9 * http://www.eclipse.org/legal/epl-v10.html
2cb26548 10 *
a52fde77
AM
11 *******************************************************************************/
12
13package org.eclipse.linuxtools.tmf.core.statevalue;
14
6f7e27a0
EB
15import org.eclipse.jdt.annotation.Nullable;
16
a52fde77
AM
17/**
18 * A state value containing a variable-sized string
a52fde77 19 *
2cb26548
AM
20 * @version 1.0
21 * @author Alexandre Montplaisir
a52fde77
AM
22 */
23final class StringStateValue extends TmfStateValue {
24
6f7e27a0 25 private final String value;
a52fde77
AM
26
27 public StringStateValue(String valueAsString) {
6f7e27a0 28 this.value = valueAsString;
a52fde77
AM
29 }
30
31 @Override
b67a2540
AM
32 public Type getType() {
33 return Type.STRING;
a52fde77
AM
34 }
35
36 @Override
37 public boolean isNull() {
38 return false;
39 }
40
41 @Override
6f7e27a0
EB
42 public boolean equals(@Nullable Object object) {
43 if (!(object instanceof StringStateValue)) {
44 return false;
45 }
46 StringStateValue other = (StringStateValue) object;
47 return value.equals(other.value);
48 }
49
50 @Override
51 public int hashCode() {
52 return value.hashCode();
a52fde77
AM
53 }
54
a52fde77
AM
55 @Override
56 public String toString() {
6f7e27a0 57 return value;
a52fde77 58 }
a9cdbafc
AM
59
60 // ------------------------------------------------------------------------
61 // Unboxing methods
62 // ------------------------------------------------------------------------
63
64 @Override
65 public String unboxStr() {
6f7e27a0 66 return value;
a9cdbafc 67 }
a52fde77 68}
This page took 0.045666 seconds and 5 git commands to generate.