/driver-legacy/src/main/com/mongodb/LazyDBList.java

http://github.com/mongodb/mongo-java-driver · Java · 59 lines · 20 code · 8 blank · 31 comment · 0 complexity · 1e31cec3ac1cecbb5a5a5678ca252764 MD5 · raw file

  1. /*
  2. * Copyright 2008-present MongoDB, Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.mongodb;
  17. import org.bson.LazyBSONCallback;
  18. import org.bson.LazyBSONList;
  19. /**
  20. * A {@code LazyDBObject} representing a BSON array.
  21. */
  22. public class LazyDBList extends LazyBSONList implements DBObject {
  23. private boolean isPartial;
  24. /**
  25. * Construct an instance with the given raw bytes and offset.
  26. *
  27. * @param bytes the raw BSON bytes
  28. * @param callback the callback to use to create nested values
  29. */
  30. public LazyDBList(final byte[] bytes, final LazyBSONCallback callback) {
  31. super(bytes, callback);
  32. }
  33. /**
  34. * Construct an instance with the given raw bytes and offset.
  35. *
  36. * @param bytes the raw BSON bytes
  37. * @param offset the offset into the raw bytes
  38. * @param callback the callback to use to create nested values
  39. */
  40. public LazyDBList(final byte[] bytes, final int offset, final LazyBSONCallback callback) {
  41. super(bytes, offset, callback);
  42. }
  43. @Override
  44. public void markAsPartialObject() {
  45. isPartial = true;
  46. }
  47. @Override
  48. public boolean isPartialObject() {
  49. return isPartial;
  50. }
  51. }