#ifndef WebIDBKey_h
#define WebIDBKey_h
#include "WebCommon.h"
#include "WebData.h"
#include "WebIDBTypes.h"
#include "WebPrivatePtr.h"
#include "WebString.h"
#include "WebVector.h"
namespace WebCore { class IDBKey; }
namespace blink {
class WebIDBKey {
public:
WebIDBKey() { }
~WebIDBKey() { reset(); }
BLINK_EXPORT static WebIDBKey createArray(const WebVector<WebIDBKey>&);
BLINK_EXPORT static WebIDBKey createBinary(const WebData&);
BLINK_EXPORT static WebIDBKey createString(const WebString&);
BLINK_EXPORT static WebIDBKey createDate(double);
BLINK_EXPORT static WebIDBKey createNumber(double);
BLINK_EXPORT static WebIDBKey createInvalid();
BLINK_EXPORT static WebIDBKey createNull();
WebIDBKey(const WebIDBKey& e) { assign(e); }
WebIDBKey& operator=(const WebIDBKey& e)
{
assign(e);
return *this;
}
BLINK_EXPORT void assign(const WebIDBKey&);
BLINK_EXPORT void assignArray(const WebVector<WebIDBKey>&);
BLINK_EXPORT void assignBinary(const WebData&);
BLINK_EXPORT void assignString(const WebString&);
BLINK_EXPORT void assignDate(double);
BLINK_EXPORT void assignNumber(double);
BLINK_EXPORT void assignInvalid();
BLINK_EXPORT void assignNull();
BLINK_EXPORT void reset();
BLINK_EXPORT WebIDBKeyType keyType() const;
BLINK_EXPORT bool isValid() const;
BLINK_EXPORT WebVector<WebIDBKey> array() const;
BLINK_EXPORT WebData binary() const;
BLINK_EXPORT WebString string() const;
BLINK_EXPORT double date() const;
BLINK_EXPORT double number() const;
#if BLINK_IMPLEMENTATION
WebIDBKey(const WTF::PassRefPtr<WebCore::IDBKey>&);
WebIDBKey& operator=(const WTF::PassRefPtr<WebCore::IDBKey>&);
operator WTF::PassRefPtr<WebCore::IDBKey>() const;
#endif
private:
WebPrivatePtr<WebCore::IDBKey> m_private;
};
}
#endif