001package org.javasimon;
002
003/**
004 * Sample produced by {@link UnknownSimon}s.
005 *
006 * @author gquintana
007 * @since 3.2
008 */
009public class UnknownSample extends Sample {
010
011        /**
012         * Returns readable representation of the sample object.
013         *
014         * @return string with readable representation of the sample
015         */
016        @Override
017        public String toString() {
018                return "UnknownSample" + "{name=" + getName() + ", note=" + getNote() + '}';
019        }
020
021        @Override
022        public String simonToString() {
023                return null;
024        }
025}